- markus@cvs.openbsd.org 2003/02/21 09:05:53
[servconf.c] print sshd_config filename in debug2 mode.
This commit is contained in:
parent
06ebedf365
commit
9f82c8fa4f
|
@ -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 $
|
||||
|
|
|
@ -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 <krb.h>
|
||||
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue