diff --git a/ChangeLog b/ChangeLog index 79594ab20..c37cd63f5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -71,6 +71,9 @@ [monitor.c monitor_wrap.c] fix permitrootlogin forced-commands-only for privsep; bux #387; ok provos@ + - markus@cvs.openbsd.org 2003/02/21 09:05:53 + [servconf.c] + print sshd_config filename in debug2 mode. 20030211 - (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com @@ -1171,4 +1174,4 @@ save auth method before monitor_reset_key_state(); bugzilla bug #284; ok provos@ -$Id: ChangeLog,v 1.2613 2003/02/24 01:03:38 djm Exp $ +$Id: ChangeLog,v 1.2614 2003/02/24 01:04:33 djm Exp $ diff --git a/servconf.c b/servconf.c index e3939df40..2510659ee 100644 --- a/servconf.c +++ b/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.115 2002/09/04 18:52:42 stevesk Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.116 2003/02/21 09:05:53 markus Exp $"); #if defined(KRB4) #include @@ -935,6 +935,7 @@ read_server_config(ServerOptions *options, const char *filename) char line[1024]; FILE *f; + debug2("read_server_config: filename %s", filename); f = fopen(filename, "r"); if (!f) { perror(filename);