summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ssh.c6
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 66c4ef574..4a0301cc5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@
10 the read-syscall and wait forever for systrace-answers) by replacing 10 the read-syscall and wait forever for systrace-answers) by replacing
11 the read/write synchronisation with SIGSTOP/SIGCONT; 11 the read/write synchronisation with SIGSTOP/SIGCONT;
12 report and help hshoexer@; ok djm@, dtucker@ 12 report and help hshoexer@; ok djm@, dtucker@
13 - dtucker@cvs.openbsd.org 2012/07/02 08:50:03
14 [ssh.c]
15 set interactive ToS for forwarded X11 sessions. ok djm@
13 16
1420120629 1720120629
15 - OpenBSD CVS Sync 18 - OpenBSD CVS Sync
diff --git a/ssh.c b/ssh.c
index 68e131527..3c376d0ff 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.368 2011/10/24 02:10:46 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.369 2012/07/02 08:50:03 dtucker 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
@@ -1359,6 +1359,10 @@ ssh_session2_setup(int id, int success, void *arg)
1359 packet_send(); 1359 packet_send();
1360 } 1360 }
1361 1361
1362 /* Tell the packet module whether this is an interactive session. */
1363 packet_set_interactive(interactive,
1364 options.ip_qos_interactive, options.ip_qos_bulk);
1365
1362 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"), 1366 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1363 NULL, fileno(stdin), &command, environ); 1367 NULL, fileno(stdin), &command, environ);
1364} 1368}