diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 03:42:30 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 03:42:30 +0000 |
commit | 79073822999e641b8705be9fcd8214b98856dd47 (patch) | |
tree | 8bc110adb048e04dc91164face566a99e6f8ff86 /sshconnect2.c | |
parent | 248c0784bfcadea9bed9dd9b919b7e4633b4f86a (diff) | |
download | openssh-git-79073822999e641b8705be9fcd8214b98856dd47.tar.gz |
- stevesk@cvs.openbsd.org 2001/06/25 20:26:37
[auth2.c sshconnect2.c]
prototype cleanup; ok markus@
Diffstat (limited to 'sshconnect2.c')
-rw-r--r-- | sshconnect2.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sshconnect2.c b/sshconnect2.c index 4ce8d4d8..258ee483 100644 --- a/sshconnect2.c +++ b/sshconnect2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect2.c,v 1.78 2001/06/24 05:47:13 markus Exp $"); +RCSID("$OpenBSD: sshconnect2.c,v 1.79 2001/06/25 20:26:37 stevesk Exp $"); #include <openssl/bn.h> #include <openssl/md5.h> @@ -461,7 +461,7 @@ userauth_passwd(Authctxt *authctxt) return 1; } -void +static void clear_auth_state(Authctxt *authctxt) { /* XXX clear authentication state */ @@ -976,7 +976,8 @@ authmethod_get(char *authlist) #define DELIM "," -char * + +static char * authmethods_get(void) { Authmethod *method = NULL; |