summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authordjm <djm>2003-02-24 01:04:33 +0000
committerdjm <djm>2003-02-24 01:04:33 +0000
commit0d66551f4b0fce4b15f0e03429642121e1de1989 (patch)
tree046898b624a876e3c004e4e048fc3c6532d41ab4 /servconf.c
parentb74c8099a7e861f5decf5f6ad48a83f8e6e529ee (diff)
downloadopenssh-0d66551f4b0fce4b15f0e03429642121e1de1989.tar.gz
- markus@cvs.openbsd.org 2003/02/21 09:05:53
[servconf.c] print sshd_config filename in debug2 mode.
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/servconf.c b/servconf.c
index e3939df4..2510659e 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 <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);