]> andersk Git - openssh.git/commitdiff
- dtucker@cvs.openbsd.org 2005/11/22 03:36:03
authordtucker <dtucker>
Tue, 22 Nov 2005 08:43:26 +0000 (08:43 +0000)
committerdtucker <dtucker>
Tue, 22 Nov 2005 08:43:26 +0000 (08:43 +0000)
     [hostfile.c]
     Correct format/arguments to debug call; spotted by shaw at vranix.com
     ok djm@

ChangeLog
hostfile.c

index 7bd02f5afd940474652609fa125c7ad41e589734..ef05571c554f5c24f1788534dca8879f9a48287f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      information about account validity.  bz #975, patch originally from
      Senthil Kumar, sanity checked by Simon Wilkinson, tested by djm@, biorn@,
      ok markus@
+   - dtucker@cvs.openbsd.org 2005/11/22 03:36:03
+     [hostfile.c]
+     Correct format/arguments to debug call; spotted by shaw at vranix.com
+     ok djm@
 
 20051120
  - (dtucker) [openbsd-compat/openssl-compat.h] Add comment explaining what
index 63550a29ddbd3f5ed87b3c4a2b00ab678e7bd6ec..3ed6462478734b4d9c36e929a3d953c37ef2d9c1 100644 (file)
@@ -36,7 +36,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: hostfile.c,v 1.35 2005/07/27 10:39:03 dtucker Exp $");
+RCSID("$OpenBSD: hostfile.c,v 1.36 2005/11/22 03:36:03 dtucker Exp $");
 
 #include <resolv.h>
 #include <openssl/hmac.h>
@@ -88,8 +88,8 @@ extract_salt(const char *s, u_int l, char *salt, size_t salt_len)
                return (-1);
        }
        if (ret != SHA_DIGEST_LENGTH) {
-               debug2("extract_salt: expected salt len %u, got %u",
-                   salt_len, ret);
+               debug2("extract_salt: expected salt len %d, got %d",
+                   SHA_DIGEST_LENGTH, ret);
                return (-1);
        }
 
This page took 0.037527 seconds and 5 git commands to generate.