2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-09-02 15:25:48 +00:00

- Correctly check the result of make_concat (thanks to Scott Reynolds).

This fixes a long-standing 3.0 problem where more than one fixed
  address declaration in a host declaration would not be honored.
This commit is contained in:
Ted Lemon
2000-06-08 21:20:00 +00:00
parent 68e1f67a18
commit 1dd632af0d

View File

@@ -43,7 +43,7 @@
#ifndef lint #ifndef lint
static char copyright[] = static char copyright[] =
"$Id: confpars.c,v 1.115 2000/06/06 23:49:05 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; "$Id: confpars.c,v 1.116 2000/06/08 21:20:00 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#include "dhcpd.h" #include "dhcpd.h"
@@ -2156,7 +2156,7 @@ int parse_fixed_addr_param (oc, cfile)
status = make_concat (&new, expr, tmp); status = make_concat (&new, expr, tmp);
expression_dereference (&expr, MDL); expression_dereference (&expr, MDL);
expression_dereference (&tmp, MDL); expression_dereference (&tmp, MDL);
if (status) if (!status)
return 0; return 0;
expr = new; expr = new;
} else } else