summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/key.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2003-02-04 09:32:08 +0000
committermarkus <markus@openbsd.org>2003-02-04 09:32:08 +0000
commit4a4e8153e7f1f75edae0dd942aceff57a355d899 (patch)
treee1b99d9e79f76f91f9522e79ab82ce2661c30ed5 /usr.bin/ssh/key.c
parentanother (diff)
downloadwireguard-openbsd-4a4e8153e7f1f75edae0dd942aceff57a355d899.tar.xz
wireguard-openbsd-4a4e8153e7f1f75edae0dd942aceff57a355d899.zip
better debug3 message
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r--usr.bin/ssh/key.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c
index 9806a729a8a..c87bfcbf06d 100644
--- a/usr.bin/ssh/key.c
+++ b/usr.bin/ssh/key.c
@@ -32,7 +32,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "includes.h"
-RCSID("$OpenBSD: key.c,v 1.49 2002/09/09 14:54:14 markus Exp $");
+RCSID("$OpenBSD: key.c,v 1.50 2003/02/04 09:32:08 markus Exp $");
#include <openssl/evp.h>
@@ -410,14 +410,14 @@ key_read(Key *ret, char **cpp)
case KEY_DSA:
space = strchr(cp, ' ');
if (space == NULL) {
- debug3("key_read: no space");
+ debug3("key_read: missing whitespace");
return -1;
}
*space = '\0';
type = key_type_from_name(cp);
*space = ' ';
if (type == KEY_UNSPEC) {
- debug3("key_read: no key found");
+ debug3("key_read: missing keytype");
return -1;
}
cp = space+1;