diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-09-18 07:51:13 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-09-18 07:51:13 +0200 |
commit | 944c4f0bdaa12ac3c58b77ee866758958e708329 (patch) | |
tree | fa88329431b6580c3a023670c585ae9a27ab7768 /clientloop.c | |
parent | - markus@cvs.openbsd.org 2001/09/17 20:50:22 (diff) | |
download | openssh-944c4f0bdaa12ac3c58b77ee866758958e708329.tar.xz openssh-944c4f0bdaa12ac3c58b77ee866758958e708329.zip |
- markus@cvs.openbsd.org 2001/09/17 20:52:47
[channels.c channels.h clientloop.c]
try to fix agent-forwarding-backconnection-bug, as seen on HPUX,
for example; with Lutz.Jaenicke@aet.TU-Cottbus.DE,
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clientloop.c b/clientloop.c index 41aff8354..e6da67d51 100644 --- a/clientloop.c +++ b/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.81 2001/07/17 21:04:57 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.82 2001/09/17 20:52:47 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -1111,6 +1111,7 @@ client_request_x11(const char *request_type, int rchan) error("client_request_x11: channel_new failed"); close(sock); } + c->force_drain = 1; return c; } @@ -1136,6 +1137,7 @@ client_request_agent(const char *request_type, int rchan) error("client_request_agent: channel_new failed"); close(sock); } + c->force_drain = 1; return c; } |