diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-02-26 19:15:09 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-02-26 19:15:09 +0100 |
commit | c58ab02e45216521133703c8c1167af7dcf50f99 (patch) | |
tree | b458e9b572886fd1324074f0dd0c338ab6121d72 /sshconnect2.c | |
parent | - stevesk@cvs.openbsd.org 2002/02/24 19:59:42 (diff) | |
download | openssh-c58ab02e45216521133703c8c1167af7dcf50f99.tar.xz openssh-c58ab02e45216521133703c8c1167af7dcf50f99.zip |
- markus@cvs.openbsd.org 2002/02/25 16:33:27
[ssh-keygen.c sshconnect2.c uuencode.c uuencode.h]
more u_* fixes
Diffstat (limited to 'sshconnect2.c')
-rw-r--r-- | sshconnect2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sshconnect2.c b/sshconnect2.c index 374eab570..c5b5ee515 100644 --- a/sshconnect2.c +++ b/sshconnect2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect2.c,v 1.96 2002/02/24 19:14:59 markus Exp $"); +RCSID("$OpenBSD: sshconnect2.c,v 1.97 2002/02/25 16:33:27 markus Exp $"); #include "ssh.h" #include "ssh2.h" @@ -567,7 +567,7 @@ send_pubkey_test(Authctxt *authctxt, Key *k, sign_cb_fn *sign_callback, int hint) { u_char *blob; - int bloblen, have_sig = 0; + u_int bloblen, have_sig = 0; debug3("send_pubkey_test"); @@ -956,7 +956,7 @@ authmethod_get(char *authlist) { char *name = NULL; - int next; + u_int next; /* Use a suitable default if we're passed a nil list. */ if (authlist == NULL || strlen(authlist) == 0) |