summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ssh.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eba53b36e..ba31bb80c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,8 @@
15 - (dtucker) [auth.h sshd.c openbsd-compat/port-aix.c] Bug #1006: fix bug in 15 - (dtucker) [auth.h sshd.c openbsd-compat/port-aix.c] Bug #1006: fix bug in
16 handling of password expiry messages returned by AIX's authentication 16 handling of password expiry messages returned by AIX's authentication
17 routines, originally reported by robvdwal at sara.nl. 17 routines, originally reported by robvdwal at sara.nl.
18 - (dtucker) [ssh.c] Prevent null pointer deref in port forwarding debug
19 message on some platforms. Patch from pete at seebeyond.com via djm.
18 20
1920050329 2120050329
20 - (dtucker) [contrib/aix/buildbff.sh] Bug #1005: Look up only the user we're 22 - (dtucker) [contrib/aix/buildbff.sh] Bug #1005: Look up only the user we're
@@ -2405,4 +2407,4 @@
2405 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2407 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2406 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2408 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2407 2409
2408$Id: ChangeLog,v 1.3732 2005/03/31 11:39:25 dtucker Exp $ 2410$Id: ChangeLog,v 1.3733 2005/03/31 11:51:54 dtucker Exp $
diff --git a/ssh.c b/ssh.c
index 1f025c784..703cb8bd3 100644
--- a/ssh.c
+++ b/ssh.c
@@ -876,6 +876,8 @@ ssh_init_forwarding(void)
876 for (i = 0; i < options.num_remote_forwards; i++) { 876 for (i = 0; i < options.num_remote_forwards; i++) {
877 debug("Remote connections from %.200s:%d forwarded to " 877 debug("Remote connections from %.200s:%d forwarded to "
878 "local address %.200s:%d", 878 "local address %.200s:%d",
879 (options.remote_forwards[i].listen_host == NULL) ?
880 (options.gateway_ports ? "*" : "LOCALHOST") :
879 options.remote_forwards[i].listen_host, 881 options.remote_forwards[i].listen_host,
880 options.remote_forwards[i].listen_port, 882 options.remote_forwards[i].listen_port,
881 options.remote_forwards[i].connect_host, 883 options.remote_forwards[i].connect_host,