2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

Support parsing of configuration options in generic blocks.

This commit is contained in:
Ted Lemon
2000-02-02 17:10:43 +00:00
parent d970ea7d43
commit 588af26930
5 changed files with 32 additions and 31 deletions

View File

@@ -22,7 +22,7 @@
#ifndef lint
static char copyright[] =
"$Id: stables.c,v 1.5 2000/01/25 01:45:00 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
"$Id: stables.c,v 1.6 2000/02/02 17:10:43 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -733,4 +733,7 @@ void initialize_server_option_spaces()
add_hash (&universe_hash,
(const unsigned char *)server_universe.name, 0,
(unsigned char *)&server_universe);
/* Make the server universe the configuration option universe. */
config_universe = &server_universe;
}