]> andersk Git - openssh.git/commitdiff
- itojun@cvs.openbsd.org 2002/05/13 02:37:39
authormouring <mouring>
Wed, 15 May 2002 16:14:36 +0000 (16:14 +0000)
committermouring <mouring>
Wed, 15 May 2002 16:14:36 +0000 (16:14 +0000)
     [auth-skey.c auth2.c]
     less warnings.  skey_{respond,query} are public (in auth.h)

ChangeLog
auth-skey.c
auth2.c

index c07ff53d83a8fbeab842965695339231de97c6df..6857a03af54a9bed040e4516c6d8c88426251587 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@
    - stevesk@cvs.openbsd.org 2002/05/11 20:24:48
      [ssh.h]
      typo in comment
+   - itojun@cvs.openbsd.org 2002/05/13 02:37:39
+     [auth-skey.c auth2.c]
+     less warnings.  skey_{respond,query} are public (in auth.h)
 
 20020514
  - (stevesk) [README.privsep] PAM+privsep works with Solaris 8.
index e897d18756e5a12da97870f414174f488107c5ea..b64550443c7620067625a1466e158d7d154e57d5 100644 (file)
@@ -22,7 +22,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 #include "includes.h"
-RCSID("$OpenBSD: auth-skey.c,v 1.17 2002/03/18 17:50:31 provos Exp $");
+RCSID("$OpenBSD: auth-skey.c,v 1.18 2002/05/13 02:37:39 itojun Exp $");
 
 #ifdef SKEY
 
@@ -38,7 +38,7 @@ skey_init_ctx(Authctxt *authctxt)
        return authctxt;
 }
 
-static int
+int
 skey_query(void *ctx, char **name, char **infotxt,
     u_int* numprompts, char ***prompts, u_int **echo_on)
 {
@@ -66,7 +66,7 @@ skey_query(void *ctx, char **name, char **infotxt,
        return 0;
 }
 
-static int
+int
 skey_respond(void *ctx, u_int numresponses, char **responses)
 {
        Authctxt *authctxt = ctx;
diff --git a/auth2.c b/auth2.c
index 20584caa99ef5e394fed881744171d077803012d..6bcc5652787fbac9e67e5205bee4291bb3331d3a 100644 (file)
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: auth2.c,v 1.90 2002/05/12 23:53:45 djm Exp $");
+RCSID("$OpenBSD: auth2.c,v 1.91 2002/05/13 02:37:39 itojun Exp $");
 
 #include <openssl/evp.h>
 
@@ -51,6 +51,7 @@ RCSID("$OpenBSD: auth2.c,v 1.90 2002/05/12 23:53:45 djm Exp $");
 #include "canohost.h"
 #include "match.h"
 #include "monitor_wrap.h"
+#include "atomicio.h"
 
 /* import */
 extern ServerOptions options;
This page took 0.101109 seconds and 5 git commands to generate.