2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-23 18:38:00 +00:00

Initialize client classification system in main().

This commit is contained in:
Ted Lemon 1998-04-19 23:35:26 +00:00
parent 5941275aac
commit 402e5f87d2

View File

@ -42,7 +42,7 @@
#ifndef lint #ifndef lint
static char ocopyright[] = static char ocopyright[] =
"$Id: dhcpd.c,v 1.50 1998/04/09 04:47:46 mellon Exp $ Copyright 1995, 1996, 1997, 1998 The Internet Software Consortium."; "$Id: dhcpd.c,v 1.51 1998/04/19 23:35:26 mellon Exp $ Copyright 1995, 1996, 1997, 1998 The Internet Software Consortium.";
#endif #endif
static char copyright[] = static char copyright[] =
@ -203,6 +203,9 @@ int main (argc, argv, envp)
/* Start the interactive client listener. */ /* Start the interactive client listener. */
interact_startup (); interact_startup ();
/* Set up the client classification system. */
classification_setup ();
/* Read the dhcpd.conf file... */ /* Read the dhcpd.conf file... */
if (!readconf ()) if (!readconf ())
error ("Configuration file errors encountered -- exiting"); error ("Configuration file errors encountered -- exiting");