]> andersk Git - openssh.git/blobdiff - hostfile.c
fix spacing of include
[openssh.git] / hostfile.c
index 63550a29ddbd3f5ed87b3c4a2b00ab678e7bd6ec..5cb55dd3c7b61f861ee6e8c112aa1ca814b43656 100644 (file)
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: hostfile.c,v 1.35 2005/07/27 10:39:03 dtucker Exp $");
+RCSID("$OpenBSD: hostfile.c,v 1.37 2006/02/07 03:47:05 stevesk Exp $");
 
 #include <resolv.h>
+
 #include <openssl/hmac.h>
 #include <openssl/sha.h>
 
-#include "packet.h"
 #include "match.h"
 #include "key.h"
 #include "hostfile.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.031172 seconds and 4 git commands to generate.