diff options
author | Damien Miller <djm@mindrot.org> | 2003-02-24 02:04:33 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-02-24 02:04:33 +0100 |
commit | 9f82c8fa4f9b6b258caf432567d43b5194d99ad0 (patch) | |
tree | e71ac0829baffce79a9fca009b031ae01f40f288 /servconf.c | |
parent | - markus@cvs.openbsd.org 2003/02/16 17:30:33 (diff) | |
download | openssh-9f82c8fa4f9b6b258caf432567d43b5194d99ad0.tar.xz openssh-9f82c8fa4f9b6b258caf432567d43b5194d99ad0.zip |
- 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.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 <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); |