search for: extract_salt

Displaying 2 results from an estimated 2 matches for "extract_salt".

Did you mean: extract_all
2005 Nov 21
1
[PATCH] 64 bit clean compilation patches
...ssh at anoncvs.at.openbsd.org:/cvs. The majority of the size of the patch comes from changes to the build system to supply the required format specifications if they are not provided by the OS. These patches remove the following warnings found during a 64-bit compile: hostfile.c: In function `extract_salt': hostfile.c:92: warning: unsigned int format, different type arg (arg 2) progressmeter.c: In function `format_rate': progressmeter.c:91: warning: long long int format, off_t arg (arg 4) progressmeter.c:91: warning: long long int format, off_t arg (arg 5) progressmeter.c:91: warning: long l...
2012 Dec 27
3
[PATCH] hostfile: list known names (if any) for new hostkeys
...} xfree(user_hostfile); diff --git a/hostfile.c b/hostfile.c index b6f924b..e493c91 100644 --- a/hostfile.c +++ b/hostfile.c @@ -58,11 +58,6 @@ #include "log.h" #include "misc.h" -struct hostkeys { - struct hostkey_entry *entries; - u_int num_entries; -}; - static int extract_salt(const char *s, u_int l, char *salt, size_t salt_len) { @@ -236,20 +231,22 @@ init_hostkeys(void) } void -load_hostkeys(struct hostkeys *hostkeys, const char *host, const char *path) +load_hostkeys(struct hostkeys *hostkeys, const char *lookup_host, + const Key *lookup_key, const char *path)...