]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Initialize quiet to zero (was used uninitialized).
authorTed Lemon <source@isc.org>
Tue, 16 Feb 1999 18:53:28 +0000 (18:53 +0000)
committerTed Lemon <source@isc.org>
Tue, 16 Feb 1999 18:53:28 +0000 (18:53 +0000)
client/dhclient.c

index 5470905a48a33321750ffb577d85cf8ba41de13c..6f66484a1abcd9151b46d60b247310a2daf35660 100644 (file)
@@ -56,7 +56,7 @@
 
 #ifndef lint
 static char ocopyright[] =
-"$Id: dhclient.c,v 1.44.2.16 1999/02/13 19:25:09 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: dhclient.c,v 1.44.2.17 1999/02/16 18:53:28 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -106,7 +106,7 @@ int main (argc, argv, envp)
        struct servent *ent;
        struct interface_info *ip;
        int seed;
-       int quiet;
+       int quiet = 0;
 
 #ifdef SYSLOG_4_2
        openlog ("dhclient", LOG_NDELAY);