]> andersk Git - openssh.git/commitdiff
- stevesk@cvs.openbsd.org 2001/06/25 20:26:37
authormouring <mouring>
Wed, 4 Jul 2001 03:42:30 +0000 (03:42 +0000)
committermouring <mouring>
Wed, 4 Jul 2001 03:42:30 +0000 (03:42 +0000)
     [auth2.c sshconnect2.c]
     prototype cleanup; ok markus@

ChangeLog
auth2.c
sshconnect2.c

index 1369d1cdddf4399334a79e4e17cea29d496923f5..aa068941b14d3462a4aa586aeb288364de375d4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - provos@cvs.openbsd.org 2001/06/25 17:54:47
      [auth.c auth.h auth-rsa.c]
      terminate secure_filename checking after checking homedir.  that way 
-     it
+     it works on AFS.  okay markus@
+   - stevesk@cvs.openbsd.org 2001/06/25 20:26:37
+     [auth2.c sshconnect2.c]
+     prototype cleanup; ok markus@
 
 20010629
  - (bal) Removed net_aton() since we don't use it any more
diff --git a/auth2.c b/auth2.c
index ca052664975bf8fbbf6720f547263d294ed6d69f..e7a7050f4d55ddd5f5a6807330c552199276a5cb 100644 (file)
--- 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;
index 4ce8d4d85a0cf12c4604fc54d16709c80aef6f87..258ee483463ac74be8de9e9065558611653c4bfa 100644 (file)
@@ -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;
This page took 0.048948 seconds and 5 git commands to generate.