summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ssh.c7
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c0258265..21d35b373 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -54,6 +54,9 @@
54 do_print_resource_record() can never be called with a NULL filename, so 54 do_print_resource_record() can never be called with a NULL filename, so
55 don't attempt (and bungle) asking for one if it has not been specified 55 don't attempt (and bungle) asking for one if it has not been specified
56 bz#2127 ok dtucker@ 56 bz#2127 ok dtucker@
57 - djm@cvs.openbsd.org 2013/07/12 05:48:55
58 [ssh.c]
59 set TCP nodelay for connections started with -N; bz#2124 ok dtucker@
57 60
5820130702 6120130702
59 - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config 62 - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config
diff --git a/ssh.c b/ssh.c
index 0e96c9219..a9b0a7086 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.378 2013/05/17 00:13:14 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.379 2013/07/12 05:48:55 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1480,6 +1480,11 @@ ssh_session2(void)
1480 1480
1481 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN)) 1481 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1482 id = ssh_session2_open(); 1482 id = ssh_session2_open();
1483 else {
1484 packet_set_interactive(
1485 options.control_master == SSHCTL_MASTER_NO,
1486 options.ip_qos_interactive, options.ip_qos_bulk);
1487 }
1483 1488
1484 /* If we don't expect to open a new session, then disallow it */ 1489 /* If we don't expect to open a new session, then disallow it */
1485 if (options.control_master == SSHCTL_MASTER_NO && 1490 if (options.control_master == SSHCTL_MASTER_NO &&