From: Ted Lemon Date: Tue, 3 Jun 1997 01:06:10 +0000 (+0000) Subject: Use a different bit for hostname than for client-hostname X-Git-Tag: DHCP-970602~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05a8d03c0b8455692ef5c16c2b71e13be5ffef69;p=thirdparty%2Fdhcp.git Use a different bit for hostname than for client-hostname --- diff --git a/server/confpars.c b/server/confpars.c index 08ab80dac..d192fa1f7 100644 --- a/server/confpars.c +++ b/server/confpars.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: confpars.c,v 1.41 1997/05/09 08:21:25 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: confpars.c,v 1.42 1997/06/03 01:06:10 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -1230,7 +1230,7 @@ struct lease *parse_lease_declaration (cfile) break; case CLIENT_HOSTNAME: - seenbit = 512; + seenbit = 1024; lease.client_hostname = parse_host_name (cfile); if (!lease.client_hostname) {