summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2012-09-07 01:10:22 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2012-09-07 01:10:22 +0000
commit90c718e7b529c27c6583279c0710f0edd9b94fcf (patch)
treeb91b3c4afee256775e7343300b23c99abc2ebec1 /usr.bin
parentdf65dea28b49503006d0cd648a6506d137da2f1e (diff)
Merge escape help text for ~v and ~V; ok djm@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/clientloop.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c
index f9fa440f2a9..3503746c7ef 100644
--- a/usr.bin/ssh/clientloop.c
+++ b/usr.bin/ssh/clientloop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clientloop.c,v 1.245 2012/09/07 00:30:19 dtucker Exp $ */
+/* $OpenBSD: clientloop.c,v 1.246 2012/09/07 01:10:21 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1005,8 +1005,7 @@ static struct escape_help_text esc_txt[] = {
{"B", "send a BREAK to the remote system", SUPPRESS_PROTO1},
{"C", "open a command line", SUPPRESS_MUXCLIENT},
{"R", "request rekey", SUPPRESS_PROTO1},
- {"V", "decrease verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
- {"v", "increase verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
+ {"V/v", "decrease/increase verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
{"^Z", "suspend ssh", SUPPRESS_MUXCLIENT},
{"#", "list forwarded connections", SUPPRESS_NEVER},
{"&", "background ssh (when waiting for connections to terminate)",
@@ -1033,13 +1032,13 @@ print_escape_help(Buffer *b, int escape_char, int protocol2, int mux_client,
for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) {
if (esc_txt[i].flags & suppress_flags)
continue;
- snprintf(string, sizeof string, " %c%-2s - %s\r\n",
+ snprintf(string, sizeof string, " %c%-3s - %s\r\n",
escape_char, esc_txt[i].cmd, esc_txt[i].text);
buffer_append(b, string, strlen(string));
}
snprintf(string, sizeof string,
- " %c%c - send the escape character by typing it twice\r\n"
+ " %c%c - send the escape character by typing it twice\r\n"
"(Note that escapes are only recognized immediately after "
"newline.)\r\n", escape_char, escape_char);
buffer_append(b, string, strlen(string));