[sshd.c]
     Make debugging output continue after reexec; ok djm@
This commit is contained in:
Darren Tucker 2005-01-20 11:03:08 +11:00
parent f0e792ec1c
commit ea7c8127ce
2 changed files with 6 additions and 3 deletions

View File

@ -19,6 +19,9 @@
- dtucker@cvs.openbsd.org 2005/01/17 03:25:46
[moduli.c]
Correct spelling: SCHNOOR->SCHNORR; ok djm@
- dtucker@cvs.openbsd.org 2005/01/17 22:48:39
[sshd.c]
Make debugging output continue after reexec; ok djm@
20050118
- (dtucker) [INSTALL Makefile.in configure.ac survey.sh.in] Implement
@ -1991,4 +1994,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3614 2005/01/20 00:02:26 dtucker Exp $
$Id: ChangeLog,v 1.3615 2005/01/20 00:03:08 dtucker Exp $

4
sshd.c
View File

@ -42,7 +42,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: sshd.c,v 1.305 2004/12/23 23:11:00 djm Exp $");
RCSID("$OpenBSD: sshd.c,v 1.306 2005/01/17 22:48:39 dtucker Exp $");
#include <openssl/dh.h>
#include <openssl/bn.h>
@ -1192,7 +1192,7 @@ main(int ac, char **av)
}
/* Initialize the log (it is reinitialized below in case we forked). */
if (debug_flag && !inetd_flag)
if (debug_flag && (!inetd_flag || rexeced_flag))
log_stderr = 1;
log_init(__progname, options.log_level, options.log_facility, log_stderr);