diff options
author | 2003-06-24 08:23:46 +0000 | |
---|---|---|
committer | 2003-06-24 08:23:46 +0000 | |
commit | 388e8bac1c8e34b6ff669b1a6376e43fc8fbaa49 (patch) | |
tree | 05b5a299fc866b7c4a2fca2ed30dfe61a045a8d6 /usr.bin/ssh/sshconnect2.c | |
parent | remove unneeded checks of accept_rtadv. from kame (diff) | |
download | wireguard-openbsd-388e8bac1c8e34b6ff669b1a6376e43fc8fbaa49.tar.xz wireguard-openbsd-388e8bac1c8e34b6ff669b1a6376e43fc8fbaa49.zip |
int -> u_int; ok djm@, deraadt@, mouring@
Diffstat (limited to 'usr.bin/ssh/sshconnect2.c')
-rw-r--r-- | usr.bin/ssh/sshconnect2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshconnect2.c b/usr.bin/ssh/sshconnect2.c index bca46da5aa9..e18ad4af640 100644 --- a/usr.bin/ssh/sshconnect2.c +++ b/usr.bin/ssh/sshconnect2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect2.c,v 1.119 2003/05/15 00:28:28 markus Exp $"); +RCSID("$OpenBSD: sshconnect2.c,v 1.120 2003/06/24 08:23:46 markus Exp $"); #ifdef KRB5 #include <krb5.h> @@ -62,7 +62,7 @@ extern Options options; */ u_char *session_id2 = NULL; -int session_id2_len = 0; +u_int session_id2_len = 0; char *xxx_host; struct sockaddr *xxx_hostaddr; @@ -586,7 +586,7 @@ sign_and_send_pubkey(Authctxt *authctxt, Identity *id) Buffer b; u_char *blob, *signature; u_int bloblen, slen; - int skip = 0; + u_int skip = 0; int ret = -1; int have_sig = 1; |