summaryrefslogtreecommitdiffstats
path: root/auth2.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 03:42:30 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 03:42:30 +0000
commit79073822999e641b8705be9fcd8214b98856dd47 (patch)
tree8bc110adb048e04dc91164face566a99e6f8ff86 /auth2.c
parent248c0784bfcadea9bed9dd9b919b7e4633b4f86a (diff)
- stevesk@cvs.openbsd.org 2001/06/25 20:26:37
[auth2.c sshconnect2.c] prototype cleanup; ok markus@
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth2.c b/auth2.c
index ca052664..e7a7050f 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth2.c,v 1.66 2001/06/23 15:12:17 itojun Exp $");
+RCSID("$OpenBSD: auth2.c,v 1.67 2001/06/25 20:26:37 stevesk Exp $");
#include <openssl/evp.h>
@@ -80,7 +80,7 @@ static void protocol_error(int, int, void *);
/* helper */
static Authmethod *authmethod_lookup(const char *);
-char *authmethods_get(void);
+static char *authmethods_get(void);
static int user_key_allowed(struct passwd *, Key *);
static int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
@@ -600,7 +600,7 @@ auth_get_user(void)
#define DELIM ","
-char *
+static char *
authmethods_get(void)
{
Authmethod *method = NULL;