diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-06-24 08:23:47 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-06-24 08:23:47 +0000 |
commit | e8daf19601798584ff3c7e4e977cd6b5a51d89a7 (patch) | |
tree | 474ab89e78db01288d5b5606df788fc0761a83a0 /usr.bin/ssh/auth2.c | |
parent | e2c34f26037d9c929320231be6d51f71dd96779b (diff) |
int -> u_int; ok djm@, deraadt@, mouring@
Diffstat (limited to 'usr.bin/ssh/auth2.c')
-rw-r--r-- | usr.bin/ssh/auth2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index 88d5f6a48fd..51160cbb848 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth2.c,v 1.98 2003/05/14 02:15:47 markus Exp $"); +RCSID("$OpenBSD: auth2.c,v 1.99 2003/06/24 08:23:46 markus Exp $"); #include "ssh2.h" #include "xmalloc.h" @@ -39,7 +39,7 @@ RCSID("$OpenBSD: auth2.c,v 1.98 2003/05/14 02:15:47 markus Exp $"); /* import */ extern ServerOptions options; extern u_char *session_id2; -extern int session_id2_len; +extern u_int session_id2_len; Authctxt *x_authctxt = NULL; |