diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-09 14:54:16 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-09 14:54:16 +0000 |
commit | 92f2ea116ed915ead839154f87c06c1355c9ae06 (patch) | |
tree | b06fbcf7f72e068090c6792142111dc496d3396d /usr.bin/ssh/channels.c | |
parent | c5ac6eb06e19f5bf8f3975ea975141a9d136f2a6 (diff) |
signed vs unsigned from -pedantic; ok henning@
Diffstat (limited to 'usr.bin/ssh/channels.c')
-rw-r--r-- | usr.bin/ssh/channels.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index d1ed2da491b..b59a4632c19 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.180 2002/07/04 08:12:15 deraadt Exp $"); +RCSID("$OpenBSD: channels.c,v 1.181 2002/09/09 14:54:14 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -874,7 +874,7 @@ channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset) static int channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset) { - u_char *p, *host; + char *p, *host; int len, have, i, found; char username[256]; struct { |