diff -rNc2 DHCPD-BETA-5.12/confpars.c DHCPD-BETA-5.13/confpars.c *** DHCPD-BETA-5.12/confpars.c Thu Sep 12 15:35:54 1996 --- DHCPD-BETA-5.13/confpars.c Fri Sep 13 12:06:24 1996 *************** *** 43,47 **** #ifndef lint static char copyright[] = ! "$Id: confpars.c,v 1.34 1996/09/11 06:36:17 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ --- 43,47 ---- #ifndef lint static char copyright[] = ! "$Id: confpars.c,v 1.35 1996/09/13 18:58:20 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ *************** *** 290,293 **** --- 290,294 ---- parse_warn ("get-lease-hostnames not allowed here."); group -> get_lease_hostnames = parse_boolean (cfile); + note ("get_lease_hostnames: %d", group -> get_lease_hostnames); break; *************** *** 434,438 **** if (!strcasecmp (val, "true") || !strcasecmp (val, "on")) ! rv = 0; else if (!strcasecmp (val, "false") || !strcasecmp (val, "off")) --- 435,439 ---- if (!strcasecmp (val, "true") || !strcasecmp (val, "on")) ! rv = 1; else if (!strcasecmp (val, "false") || !strcasecmp (val, "off")) *************** *** 1416,1425 **** if ((token = peek_token (&val, cfile)) == DYNAMIC_BOOTP) { token = next_token (&val, cfile); ! if (subnet -> group -> boot_unknown_clients) { ! subnet -> group -> dynamic_bootp = dynamic = 1; ! } else { ! parse_warn ("dynamic-bootp conflicts with %s", ! "boot_unknown_hosts 0"); ! } } --- 1417,1421 ---- if ((token = peek_token (&val, cfile)) == DYNAMIC_BOOTP) { token = next_token (&val, cfile); ! subnet -> group -> dynamic_bootp = dynamic = 1; } diff -rNc2 DHCPD-BETA-5.12/dhcpd.c DHCPD-BETA-5.13/dhcpd.c *** DHCPD-BETA-5.12/dhcpd.c Thu Sep 12 15:36:16 1996 --- DHCPD-BETA-5.13/dhcpd.c Fri Sep 13 12:06:44 1996 *************** *** 49,53 **** "Copyright 1995, 1996 The Internet Software Consortium."; static char arr [] = "All rights reserved."; ! static char message [] = "Internet Software Consortium DHCPD $Name: BETA_5_12 $"; #include "dhcpd.h" --- 49,53 ---- "Copyright 1995, 1996 The Internet Software Consortium."; static char arr [] = "All rights reserved."; ! static char message [] = "Internet Software Consortium DHCPD $Name: BETA_5_13 $"; #include "dhcpd.h"