diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-02-21 09:05:54 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-02-21 09:05:54 +0000 |
commit | 0324821cde144ac0c853b9d7aa430222e273a01a (patch) | |
tree | 13cfc285d107ad34d0f3cfdfc3aad0e4cb61cbae | |
parent | 7676636392f7f92133b690fd75246e3c78460421 (diff) |
print sshd_config filename in debug2 mode.
-rw-r--r-- | usr.bin/ssh/servconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 7140026df97..c28e64100d0 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/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) || defined(KRB5) #include <krb.h> @@ -894,6 +894,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); |