summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-11-05 15:12:59 +1100
committerDamien Miller <djm@mindrot.org>2005-11-05 15:12:59 +1100
commitaa3bb1094011e640488e9f2ebd718a79960b147d (patch)
treed43d7942176629b0b5da9350651263d561a8ccfe /ssh.c
parent4bbacb706b36e35f341d41a25ee0cfa6b37af047 (diff)
- djm@cvs.openbsd.org 2005/10/30 04:03:24
[ssh.c] fix misleading debug message; ok dtucker@
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index e51ead726..7e8bc1f24 100644
--- a/ssh.c
+++ b/ssh.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: ssh.c,v 1.252 2005/10/14 02:17:59 stevesk Exp $"); 43RCSID("$OpenBSD: ssh.c,v 1.253 2005/10/30 04:03:24 djm Exp $");
44 44
45#include <openssl/evp.h> 45#include <openssl/evp.h>
46#include <openssl/err.h> 46#include <openssl/err.h>
@@ -794,8 +794,7 @@ ssh_init_forwarding(void)
794 debug("Remote connections from %.200s:%d forwarded to " 794 debug("Remote connections from %.200s:%d forwarded to "
795 "local address %.200s:%d", 795 "local address %.200s:%d",
796 (options.remote_forwards[i].listen_host == NULL) ? 796 (options.remote_forwards[i].listen_host == NULL) ?
797 (options.gateway_ports ? "*" : "LOCALHOST") : 797 "LOCALHOST" : options.remote_forwards[i].listen_host,
798 options.remote_forwards[i].listen_host,
799 options.remote_forwards[i].listen_port, 798 options.remote_forwards[i].listen_port,
800 options.remote_forwards[i].connect_host, 799 options.remote_forwards[i].connect_host,
801 options.remote_forwards[i].connect_port); 800 options.remote_forwards[i].connect_port);