diff options
author | 1996-10-14 03:09:12 +0000 | |
---|---|---|
committer | 1996-10-14 03:09:12 +0000 | |
commit | ba859a73b541135f63f14425b3bff04028b3068c (patch) | |
tree | b945740b179c69f8dd1bed503225be34b16e8aee /lib/libskey/skey.h | |
parent | Oops. zsstop still needs to return int in OpenBSD. (diff) | |
download | wireguard-openbsd-ba859a73b541135f63f14425b3bff04028b3068c.tar.xz wireguard-openbsd-ba859a73b541135f63f14425b3bff04028b3068c.zip |
htoi now takes an int, not char.
Only skey_set_algorithm() for the record that matches target user.
Diffstat (limited to 'lib/libskey/skey.h')
-rw-r--r-- | lib/libskey/skey.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libskey/skey.h b/lib/libskey/skey.h index df85d92bfad..fbe648da499 100644 --- a/lib/libskey/skey.h +++ b/lib/libskey/skey.h @@ -11,7 +11,7 @@ * * Main client header * - * $Id: skey.h,v 1.5 1996/09/30 04:10:45 millert Exp $ + * $Id: skey.h,v 1.6 1996/10/14 03:09:12 millert Exp $ */ /* Server-side data structure for reading keys file during login */ @@ -56,6 +56,6 @@ int skey_haskey __P((char *username)); int getskeyprompt __P((struct skey *mp, char *name, char *prompt)); int atob8 __P((char *out, char *in)); int btoa8 __P((char *out, char *in)); -int htoi __P((char c)); +int htoi __P((int c)); const char * skey_get_algorithm __P((void)); char * skey_set_algorithm __P((char *new)); |