blob: 298e8e216099f83e986ab43d0192ed9af90476a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Description: Mention ~& when waiting for forwarded connections to terminate
Author: Matthew Vernon <matthew@debian.org>
Bug-Debian: http://bugs.debian.org/50308
Last-Update: 2010-02-27
Index: b/serverloop.c
===================================================================
--- a/serverloop.c
+++ b/serverloop.c
@@ -686,7 +686,7 @@
if (!channel_still_open())
break;
if (!waiting_termination) {
- const char *s = "Waiting for forwarded connections to terminate...\r\n";
+ const char *s = "Waiting for forwarded connections to terminate... (press ~& to background)\r\n";
char *cp;
waiting_termination = 1;
buffer_append(&stderr_buffer, s, strlen(s));
|