summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/serverloop.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2003-06-24 08:23:46 +0000
committermarkus <markus@openbsd.org>2003-06-24 08:23:46 +0000
commit388e8bac1c8e34b6ff669b1a6376e43fc8fbaa49 (patch)
tree05b5a299fc866b7c4a2fca2ed30dfe61a045a8d6 /usr.bin/ssh/serverloop.c
parentremove unneeded checks of accept_rtadv. from kame (diff)
downloadwireguard-openbsd-388e8bac1c8e34b6ff669b1a6376e43fc8fbaa49.tar.xz
wireguard-openbsd-388e8bac1c8e34b6ff669b1a6376e43fc8fbaa49.zip
int -> u_int; ok djm@, deraadt@, mouring@
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r--usr.bin/ssh/serverloop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c
index e02ee0aa0df..771dc14ff53 100644
--- a/usr.bin/ssh/serverloop.c
+++ b/usr.bin/ssh/serverloop.c
@@ -35,7 +35,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: serverloop.c,v 1.109 2003/06/04 12:03:59 djm Exp $");
+RCSID("$OpenBSD: serverloop.c,v 1.110 2003/06/24 08:23:46 markus Exp $");
#include "xmalloc.h"
#include "packet.h"
@@ -156,7 +156,7 @@ sigchld_handler(int sig)
static void
make_packets_from_stderr_data(void)
{
- int len;
+ u_int len;
/* Send buffered stderr data to the client. */
while (buffer_len(&stderr_buffer) > 0 &&
@@ -185,7 +185,7 @@ make_packets_from_stderr_data(void)
static void
make_packets_from_stdout_data(void)
{
- int len;
+ u_int len;
/* Send buffered stdout data to the client. */
while (buffer_len(&stdout_buffer) > 0 &&