From: Ted Lemon Date: Fri, 1 Oct 1999 03:42:31 +0000 (+0000) Subject: Fix typo. X-Git-Tag: V3-BETA-1-PATCH-2~5^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d610260fd17202a3f493318088168000faeca7c5;p=thirdparty%2Fdhcp.git Fix typo. --- diff --git a/client/clparse.c b/client/clparse.c index 007dec637..b4e7fd31f 100644 --- a/client/clparse.c +++ b/client/clparse.c @@ -22,7 +22,7 @@ #ifndef lint static char copyright[] = -"$Id: clparse.c,v 1.34 1999/10/01 03:34:49 mellon Exp $ Copyright (c) 1997 The Internet Software Consortium. All rights reserved.\n"; +"$Id: clparse.c,v 1.35 1999/10/01 03:42:31 mellon Exp $ Copyright (c) 1997 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -381,7 +381,7 @@ void parse_client_statement (cfile, ip, config) case REQUEST: token = next_token (&val, cfile); - if (!config -> requested_options == default_requested_options) + if (config -> requested_options == default_requested_options) config -> requested_options = (u_int32_t *)0; parse_option_list (cfile, &config -> requested_options); return;