summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-02-24 12:04:33 +1100
committerDamien Miller <djm@mindrot.org>2003-02-24 12:04:33 +1100
commit9f82c8fa4f9b6b258caf432567d43b5194d99ad0 (patch)
treee71ac0829baffce79a9fca009b031ae01f40f288 /servconf.c
parent06ebedf3656bbe603d0a0d8db9eeeb35ff702643 (diff)
- 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 e3939df40..2510659ee 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.115 2002/09/04 18:52:42 stevesk Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.116 2003/02/21 09:05:53 markus Exp $");
14 14
15#if defined(KRB4) 15#if defined(KRB4)
16#include <krb.h> 16#include <krb.h>
@@ -935,6 +935,7 @@ read_server_config(ServerOptions *options, const char *filename)
935 char line[1024]; 935 char line[1024];
936 FILE *f; 936 FILE *f;
937 937
938 debug2("read_server_config: filename %s", filename);
938 f = fopen(filename, "r"); 939 f = fopen(filename, "r");
939 if (!f) { 940 if (!f) {
940 perror(filename); 941 perror(filename);