summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2005-10-30 04:03:25 +0000
committerDamien Miller <djm@cvs.openbsd.org>2005-10-30 04:03:25 +0000
commitbf0c27207cb2fb011e7ced661d1cba499b4914c7 (patch)
tree8b62bc5c4f3903baaeb5211984592ec5750fc11a
parent4361b30e4b3e91ef724b440897ad83dc1335fe8d (diff)
fix misleading debug message; ok dtucker@
-rw-r--r--usr.bin/ssh/ssh.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index a634e242181..7993f9a2385 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -40,7 +40,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.252 2005/10/14 02:17:59 stevesk Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.253 2005/10/30 04:03:24 djm Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -783,8 +783,7 @@ ssh_init_forwarding(void)
debug("Remote connections from %.200s:%d forwarded to "
"local address %.200s:%d",
(options.remote_forwards[i].listen_host == NULL) ?
- (options.gateway_ports ? "*" : "LOCALHOST") :
- options.remote_forwards[i].listen_host,
+ "LOCALHOST" : options.remote_forwards[i].listen_host,
options.remote_forwards[i].listen_port,
options.remote_forwards[i].connect_host,
options.remote_forwards[i].connect_port);