summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--clientloop.c8
2 files changed, 15 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c986d4c0..8626eee63 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
120081209
2 - (djm) OpenBSD CVS Sync
3 - djm@cvs.openbsd.org 2008/12/09 02:38:18
4 [clientloop.c]
5 The ~C escape handler does not work correctly for multiplexed sessions -
6 it opens a commandline on the master session, instead of on the slave
7 that requested it. Disable it on slave sessions until such time as it
8 is fixed; bz#1543 report from Adrian Bridgett via Colin Watson
9 ok markus@
10
120081208 1120081208
2 - (djm) [configure.ac] bz#1538: better test for ProPolice/SSP: actually 12 - (djm) [configure.ac] bz#1538: better test for ProPolice/SSP: actually
3 use some stack in main(). 13 use some stack in main().
@@ -4964,5 +4974,5 @@
4964 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4974 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4965 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4975 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4966 4976
4967$Id: ChangeLog,v 1.5151 2008/12/07 22:55:25 djm Exp $ 4977$Id: ChangeLog,v 1.5152 2008/12/09 03:11:32 djm Exp $
4968 4978
diff --git a/clientloop.c b/clientloop.c
index df4545828..0d228421c 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: clientloop.c,v 1.205 2008/12/02 19:01:07 markus Exp $ */ 1/* $OpenBSD: clientloop.c,v 1.206 2008/12/09 02:38:18 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
@@ -1042,7 +1042,6 @@ process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
1042Supported escape sequences:\r\n\ 1042Supported escape sequences:\r\n\
1043 %c. - terminate session\r\n\ 1043 %c. - terminate session\r\n\
1044 %cB - send a BREAK to the remote system\r\n\ 1044 %cB - send a BREAK to the remote system\r\n\
1045 %cC - open a command line\r\n\
1046 %cR - Request rekey (SSH protocol 2 only)\r\n\ 1045 %cR - Request rekey (SSH protocol 2 only)\r\n\
1047 %c# - list forwarded connections\r\n\ 1046 %c# - list forwarded connections\r\n\
1048 %c? - this message\r\n\ 1047 %c? - this message\r\n\
@@ -1051,8 +1050,7 @@ Supported escape sequences:\r\n\
1051 escape_char, escape_char, 1050 escape_char, escape_char,
1052 escape_char, escape_char, 1051 escape_char, escape_char,
1053 escape_char, escape_char, 1052 escape_char, escape_char,
1054 escape_char, escape_char, 1053 escape_char, escape_char);
1055 escape_char);
1056 } else { 1054 } else {
1057 snprintf(string, sizeof string, 1055 snprintf(string, sizeof string,
1058"%c?\r\n\ 1056"%c?\r\n\
@@ -1087,6 +1085,8 @@ Supported escape sequences:\r\n\
1087 continue; 1085 continue;
1088 1086
1089 case 'C': 1087 case 'C':
1088 if (c && c->ctl_fd != -1)
1089 goto noescape;
1090 process_cmdline(); 1090 process_cmdline();
1091 continue; 1091 continue;
1092 1092