diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | monitor.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -17,6 +17,7 @@ | |||
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 | 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. | 19 | message on some platforms. Patch from pete at seebeyond.com via djm. |
20 | - (dtucker) [monitor.c] Remaining part of fix for bug #1006. | ||
20 | 21 | ||
21 | 20050329 | 22 | 20050329 |
22 | - (dtucker) [contrib/aix/buildbff.sh] Bug #1005: Look up only the user we're | 23 | - (dtucker) [contrib/aix/buildbff.sh] Bug #1005: Look up only the user we're |
@@ -2407,4 +2408,4 @@ | |||
2407 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 2408 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
2408 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 2409 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
2409 | 2410 | ||
2410 | $Id: ChangeLog,v 1.3733 2005/03/31 11:51:54 dtucker Exp $ | 2411 | $Id: ChangeLog,v 1.3734 2005/03/31 13:52:04 dtucker Exp $ |
@@ -310,6 +310,8 @@ monitor_child_preauth(Authctxt *_authctxt, struct monitor *pmonitor) | |||
310 | authctxt = _authctxt; | 310 | authctxt = _authctxt; |
311 | memset(authctxt, 0, sizeof(*authctxt)); | 311 | memset(authctxt, 0, sizeof(*authctxt)); |
312 | 312 | ||
313 | authctxt->loginmsg = &loginmsg; | ||
314 | |||
313 | if (compat20) { | 315 | if (compat20) { |
314 | mon_dispatch = mon_dispatch_proto20; | 316 | mon_dispatch = mon_dispatch_proto20; |
315 | 317 | ||