diff options
author | Damien Miller <djm@mindrot.org> | 2000-04-19 23:42:21 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-04-19 23:42:21 +0200 |
commit | 166fca8894807de71b741a779330bd23edfec013 (patch) | |
tree | 387371567ce5b3c89c52e18f3a22348f1456af8d /clientloop.c | |
parent | - Make fixpaths work with perl4, patch from Andre Lucas (diff) | |
download | openssh-166fca8894807de71b741a779330bd23edfec013.tar.xz openssh-166fca8894807de71b741a779330bd23edfec013.zip |
- Sync with OpenBSD CVS:
[clientloop.c login.c serverloop.c ssh-agent.c ssh.h sshconnect.c sshd.c]
- pid_t
[session.c]
- remove bogus chan_read_failed. this could cause data
corruption (missing data) at end of a SSH2 session.
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c index cc25ca550..0296dac77 100644 --- a/clientloop.c +++ b/clientloop.c @@ -16,7 +16,7 @@ */ #include "includes.h" -RCSID("$Id: clientloop.c,v 1.11 2000/04/16 01:18:41 damien Exp $"); +RCSID("$Id: clientloop.c,v 1.12 2000/04/19 21:42:21 damien Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -471,7 +471,8 @@ client_process_net_input(fd_set * readset) void client_process_input(fd_set * readset) { - int len, pid; + int len; + pid_t pid; char buf[8192], *s; /* Read input from stdin. */ |