Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Apr 2010 13:16:33 +0000 (UTC)
From:      Dag-Erling Smorgrav <des@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r206040 - head/libexec/fingerd
Message-ID:  <201004011316.o31DGXaC040944@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Thu Apr  1 13:16:32 2010
New Revision: 206040
URL: http://svn.freebsd.org/changeset/base/206040

Log:
  Forgot to initialize the debug variable.
  
  MFC after:	2 weeks

Modified:
  head/libexec/fingerd/fingerd.c

Modified: head/libexec/fingerd/fingerd.c
==============================================================================
--- head/libexec/fingerd/fingerd.c	Thu Apr  1 13:13:09 2010	(r206039)
+++ head/libexec/fingerd/fingerd.c	Thu Apr  1 13:16:32 2010	(r206040)
@@ -78,7 +78,7 @@ main(int argc, char *argv[])
 	char rhost[MAXHOSTNAMELEN];
 
 	prog = _PATH_FINGER;
-	logging = kflag = pflag = secure = 0;
+	debug = logging = kflag = pflag = secure = 0;
 	openlog("fingerd", LOG_PID | LOG_CONS, LOG_DAEMON);
 	opterr = 0;
 	while ((ch = getopt(argc, argv, "dklp:s")) != -1)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004011316.o31DGXaC040944>