From: Ted Lemon Date: Mon, 12 Jul 1999 22:44:16 +0000 (+0000) Subject: Parse ddns state in leases even if DDNS support is not compiled in. X-Git-Tag: V3-BETA-1-PATCH-2~5^2~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e2bf4f72554b639f1d4aff65470dabd6444d6c6;p=thirdparty%2Fdhcp.git Parse ddns state in leases even if DDNS support is not compiled in. --- diff --git a/server/confpars.c b/server/confpars.c index debc3122b..5322260a0 100644 --- a/server/confpars.c +++ b/server/confpars.c @@ -22,7 +22,7 @@ #ifndef lint static char copyright[] = -"$Id: confpars.c,v 1.73 1999/07/01 19:32:29 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: confpars.c,v 1.74 1999/07/12 22:44:16 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -1649,7 +1649,6 @@ struct lease *parse_lease_declaration (cfile) token = BILLING; break; -#if defined (NSUPDATE) case DDNS_FWD_NAME: seenbit = 4096; token = peek_token (&val, cfile); @@ -1671,7 +1670,6 @@ struct lease *parse_lease_declaration (cfile) lease.ddns_rev_name = parse_host_name (cfile); break; -#endif default: skip_to_semi (cfile);