]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2003/02/04 09:32:08
authordjm <djm>
Mon, 24 Feb 2003 00:54:57 +0000 (00:54 +0000)
committerdjm <djm>
Mon, 24 Feb 2003 00:54:57 +0000 (00:54 +0000)
     [key.c]
     better debug3 message

ChangeLog
key.c

index c2846ea078167cdd58c5529bbfa26816a9249682..28a8182fa628d163bc2b11035a52449c62e8033d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -32,6 +32,9 @@
      [sshpty.c]
      don't call error() for readonly /dev; from soekris list; ok mcbride,
      henning, deraadt.
+   - markus@cvs.openbsd.org 2003/02/04 09:32:08
+     [key.c]
+     better debug3 message
 
 20030211
  - (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com
diff --git a/key.c b/key.c
index 9806a729a8a698b62359b0ad42d9d48e356bdaba..c87bfcbf06dc3e6fcdcf925f0138edf359c08ad2 100644 (file)
--- a/key.c
+++ b/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;
This page took 0.05034 seconds and 5 git commands to generate.