diff options
author | 2003-02-04 09:32:08 +0000 | |
---|---|---|
committer | 2003-02-04 09:32:08 +0000 | |
commit | 4a4e8153e7f1f75edae0dd942aceff57a355d899 (patch) | |
tree | e1b99d9e79f76f91f9522e79ab82ce2661c30ed5 /usr.bin/ssh/key.c | |
parent | another (diff) | |
download | wireguard-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.c | 6 |
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; |