]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Initialize client classification system in main().
authorTed Lemon <source@isc.org>
Sun, 19 Apr 1998 23:35:26 +0000 (23:35 +0000)
committerTed Lemon <source@isc.org>
Sun, 19 Apr 1998 23:35:26 +0000 (23:35 +0000)
server/dhcpd.c

index 0d3e56cd322a84b5a252dbffa3df025c02bf2ed1..6d535419fd3a658847ba1f0a8712b248a72bed42 100644 (file)
@@ -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");