diff options
author | 2013-07-12 00:19:58 +0000 | |
---|---|---|
committer | 2013-07-12 00:19:58 +0000 | |
commit | 2d917344548df1652ca917aefc841fb7985938ee (patch) | |
tree | dffe576e2a5f814f43fc4b67ad83474459e88198 /usr.bin/ssh/serverloop.c | |
parent | ELF configuration for gcc3 on vax. (diff) | |
download | wireguard-openbsd-2d917344548df1652ca917aefc841fb7985938ee.tar.xz wireguard-openbsd-2d917344548df1652ca917aefc841fb7985938ee.zip |
fix pointer-signedness warnings from clang/llvm-3.3; "seems nice" deraadt@
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index 1381dcf2b6e..bb0c617ac66 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.167 2013/05/17 00:13:14 djm Exp $ */ +/* $OpenBSD: serverloop.c,v 1.168 2013/07/12 00:19:59 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -791,7 +791,8 @@ void server_loop2(Authctxt *authctxt) { fd_set *readset = NULL, *writeset = NULL; - int rekeying = 0, max_fd, nalloc = 0; + int rekeying = 0, max_fd; + u_int nalloc = 0; u_int64_t rekey_timeout_ms = 0; debug("Entering interactive session for SSH2."); |