From: Ted Lemon Date: Tue, 16 Feb 1999 18:53:28 +0000 (+0000) Subject: Initialize quiet to zero (was used uninitialized). X-Git-Tag: V2-BETA-1-PATCH-13~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=902ac6ffefdf2e5f9edb04fc4492d7ad1ae89363;p=thirdparty%2Fdhcp.git Initialize quiet to zero (was used uninitialized). --- diff --git a/client/dhclient.c b/client/dhclient.c index 5470905a4..6f66484a1 100644 --- a/client/dhclient.c +++ b/client/dhclient.c @@ -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);