summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2003-02-21 09:05:53 +0000
committermarkus <markus@openbsd.org>2003-02-21 09:05:53 +0000
commit6df68444b68cbdf9e1619b3f90aae954640c9568 (patch)
treed8d3b89b6c26ee26fe364de754efe6bf097b4d17
parentmove server only kex and monitor code to sshd. (diff)
downloadwireguard-openbsd-6df68444b68cbdf9e1619b3f90aae954640c9568.tar.xz
wireguard-openbsd-6df68444b68cbdf9e1619b3f90aae954640c9568.zip
print sshd_config filename in debug2 mode.
-rw-r--r--usr.bin/ssh/servconf.c3
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);