summaryrefslogtreecommitdiff
path: root/source3/lib/hash.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-10-04 22:37:33 +0000
committerJeremy Allison <jra@samba.org>2000-10-04 22:37:33 +0000
commit4248374c84a3564de3c2cc728612b73ba72e2443 (patch)
treed522a489787b66be8c8b7fb637317af2577ebcef /source3/lib/hash.c
parent23f78fd7b91878176c518471cdca84cad826cba9 (diff)
downloadsamba-4248374c84a3564de3c2cc728612b73ba72e2443.tar.gz
samba-4248374c84a3564de3c2cc728612b73ba72e2443.tar.bz2
samba-4248374c84a3564de3c2cc728612b73ba72e2443.zip
Made re-init of stat cache explicit rather than being hidden.
Jeremy. (This used to be commit b0c40236bb4381fec0e812c20e5f8c09ebf005f9)
Diffstat (limited to 'source3/lib/hash.c')
-rw-r--r--source3/lib/hash.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/lib/hash.c b/source3/lib/hash.c
index cfb34a5488..c96315f37e 100644
--- a/source3/lib/hash.c
+++ b/source3/lib/hash.c
@@ -320,9 +320,5 @@ BOOL hash_clear(hash_table *table)
free((char *) table->buckets);
table->buckets = NULL;
- /* Reinitialize the hash table. */
- if(!hash_table_init(table, 0, table->comp_func))
- return False;
-
return True;
}