summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-29 19:52:00 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-29 19:52:00 +0000
commitf343674d5e297f16aafe24f68620b22656a27ba1 (patch)
tree521d8f0522d150f47be13c129c139cf69e044577 /channels.c
parent2f0304c768a2f44b78471a258b2dd7ce9acc199b (diff)
- markus@cvs.openbsd.org 2001/04/29 19:16:52
[channels.c clientloop.c compat.c compat.h serverloop.c] more ssh.com-2.0.x bug-compat; from per@appgate.com
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.c b/channels.c
index 57890aec9..cd73bd726 100644
--- a/channels.c
+++ b/channels.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: channels.c,v 1.109 2001/04/17 12:55:03 markus Exp $"); 43RCSID("$OpenBSD: channels.c,v 1.110 2001/04/29 19:16:52 markus Exp $");
44 44
45#include <openssl/rsa.h> 45#include <openssl/rsa.h>
46#include <openssl/dsa.h> 46#include <openssl/dsa.h>
@@ -1534,7 +1534,7 @@ channel_input_open_failure(int type, int plen, void *ctxt)
1534 "non-opening channel %d.", id); 1534 "non-opening channel %d.", id);
1535 if (compat20) { 1535 if (compat20) {
1536 reason = packet_get_int(); 1536 reason = packet_get_int();
1537 if (packet_remaining() > 0) { 1537 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1538 msg = packet_get_string(NULL); 1538 msg = packet_get_string(NULL);
1539 lang = packet_get_string(NULL); 1539 lang = packet_get_string(NULL);
1540 } 1540 }