From c31c7b7d00c25d57c9fd2b0e79fc04c608531d60 Mon Sep 17 00:00:00 2001 From: lukem Date: Thu, 30 Nov 2000 08:33:33 +0000 Subject: [PATCH] initialise confdir to _DEFAULT_CONFDIR again, so that -C works... --- libexec/ftpd/ftpd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index def992a4be60..69b99469bef7 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -1,4 +1,4 @@ -/* $NetBSD: ftpd.c,v 1.116 2000/11/30 06:06:08 lukem Exp $ */ +/* $NetBSD: ftpd.c,v 1.117 2000/11/30 08:33:33 lukem Exp $ */ /* * Copyright (c) 1997-2000 The NetBSD Foundation, Inc. @@ -109,7 +109,7 @@ __COPYRIGHT( #if 0 static char sccsid[] = "@(#)ftpd.c 8.5 (Berkeley) 4/28/95"; #else -__RCSID("$NetBSD: ftpd.c,v 1.116 2000/11/30 06:06:08 lukem Exp $"); +__RCSID("$NetBSD: ftpd.c,v 1.117 2000/11/30 08:33:33 lukem Exp $"); #endif #endif /* not lint */ @@ -184,7 +184,7 @@ static char ttyline[20]; static struct utmp utmp; /* for utmp */ static const char *anondir = NULL; -static const char *confdir = NULL; +static const char *confdir = _DEFAULT_CONFDIR; #if defined(KERBEROS) || defined(KERBEROS5) int has_ccache = 0;