diff options
Diffstat (limited to 'lib/libc/db/hash/hsearch.c')
-rw-r--r-- | lib/libc/db/hash/hsearch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/db/hash/hsearch.c b/lib/libc/db/hash/hsearch.c index e4914b1..cc8f7a4 100644 --- a/lib/libc/db/hash/hsearch.c +++ b/lib/libc/db/hash/hsearch.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)hsearch.c 8.3 (Berkeley) 2/21/94"; +static char sccsid[] = "@(#)hsearch.c 8.4 (Berkeley) 7/21/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -58,7 +58,7 @@ hcreate(nel) info.nelem = nel; info.bsize = 256; info.ffactor = 8; - info.cachesize = NULL; + info.cachesize = 0; info.hash = NULL; info.lorder = 0; dbp = (DB *)__hash_open(NULL, O_CREAT | O_RDWR, 0600, &info, 0); |