From 402e5f87d2f45eb3513db3297b51a89d1e08b28f Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Sun, 19 Apr 1998 23:35:26 +0000 Subject: [PATCH] Initialize client classification system in main(). --- server/dhcpd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/dhcpd.c b/server/dhcpd.c index 0d3e56cd..6d535419 100644 --- a/server/dhcpd.c +++ b/server/dhcpd.c @@ -42,7 +42,7 @@ #ifndef lint 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 static char copyright[] = @@ -203,6 +203,9 @@ int main (argc, argv, envp) /* Start the interactive client listener. */ interact_startup (); + /* Set up the client classification system. */ + classification_setup (); + /* Read the dhcpd.conf file... */ if (!readconf ()) error ("Configuration file errors encountered -- exiting");