diff options
author | 2000-12-20 19:37:21 +0000 | |
---|---|---|
committer | 2000-12-20 19:37:21 +0000 | |
commit | 1829452d07bebfae657e6a01ba3b7684119a1115 (patch) | |
tree | cfc4a6c70ee988664bbc92d208466b33e0f1b52f /usr.bin/ssh/sshconnect2.c | |
parent | init pointer to NULL; report from Jan.Iven@cern.ch (diff) | |
download | wireguard-openbsd-1829452d07bebfae657e6a01ba3b7684119a1115.tar.xz wireguard-openbsd-1829452d07bebfae657e6a01ba3b7684119a1115.zip |
fix prototypes; from stevesk@pobox.com
Diffstat (limited to 'usr.bin/ssh/sshconnect2.c')
-rw-r--r-- | usr.bin/ssh/sshconnect2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshconnect2.c b/usr.bin/ssh/sshconnect2.c index d98f6be1e18..aee547fbee6 100644 --- a/usr.bin/ssh/sshconnect2.c +++ b/usr.bin/ssh/sshconnect2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect2.c,v 1.32 2000/12/19 23:17:58 markus Exp $"); +RCSID("$OpenBSD: sshconnect2.c,v 1.33 2000/12/20 19:37:22 markus Exp $"); #include <openssl/bn.h> #include <openssl/rsa.h> @@ -475,7 +475,7 @@ int userauth_pubkey(Authctxt *authctxt); int userauth_passwd(Authctxt *authctxt); int userauth_kbdint(Authctxt *authctxt); -void authmethod_clear(); +void authmethod_clear(void); Authmethod *authmethod_get(char *authlist); Authmethod *authmethod_lookup(const char *name); @@ -933,7 +933,7 @@ static char *authlist_state = NULL; /* state variable for strtok_r() */ * finished processing server list to free resources. */ void -authmethod_clear() +authmethod_clear(void) { if (authlist_current != NULL) { xfree(authlist_current); |