]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Update calls to new_hash.
authorTed Lemon <source@isc.org>
Mon, 6 Mar 2000 23:36:09 +0000 (23:36 +0000)
committerTed Lemon <source@isc.org>
Mon, 6 Mar 2000 23:36:09 +0000 (23:36 +0000)
server/stables.c

index 42f3f27d331516534ff39e38b698404b175154f2..6f940260ca97f2b903a76a75b3c2cfc02e8d8123 100644 (file)
@@ -22,7 +22,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$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";
+"$Id: stables.c,v 1.7 2000/03/06 23:36:09 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -690,7 +690,7 @@ void initialize_server_option_spaces()
        agent_universe.store_tag = putUChar;
        agent_universe.store_length = putUChar;
        universes [agent_universe.index] = &agent_universe;
-       agent_universe.hash = new_hash ();
+       agent_universe.hash = new_hash (0, 0);
        if (!agent_universe.hash)
                log_fatal ("Can't allocate agent option hash table.");
        for (i = 0; i < 256; i++) {
@@ -716,7 +716,7 @@ void initialize_server_option_spaces()
        server_universe.store_length = putUChar;
        server_universe.index = universe_count++;
        universes [server_universe.index] = &server_universe;
-       server_universe.hash = new_hash ();
+       server_universe.hash = new_hash (0, 0);
        if (!server_universe.hash)
                log_fatal ("Can't allocate server option hash table.");
        for (i = 0; i < 256; i++) {