diff options
author | Jeremy Allison <jra@samba.org> | 2000-06-09 18:54:41 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-06-09 18:54:41 +0000 |
commit | eab8f3c9405d108e4bc05f02a4a595bbb13ba403 (patch) | |
tree | d5dbfefaa4df19f85e4d17126c50046e5805fd10 /source3/include/proto.h | |
parent | 03e0164270ffd7ceeb8df6f3cc3917c111dc05f8 (diff) | |
download | samba-eab8f3c9405d108e4bc05f02a4a595bbb13ba403.tar.gz samba-eab8f3c9405d108e4bc05f02a4a595bbb13ba403.tar.bz2 samba-eab8f3c9405d108e4bc05f02a4a595bbb13ba403.zip |
Fix from Elrond for hash table corruption. Should fix stat cache bug (I
sincerely hope :-). Thanks elrond !
Jeremy.
(This used to be commit 0d59e8c6bf49e06f11b386f9d805474771365f52)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index a5da95cd7d..9563b432fd 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -106,7 +106,7 @@ int string_hash(int hash_size, const char *key); hash_element *hash_lookup(hash_table *table, char *key); hash_element *hash_insert(hash_table *table, char *value, char *key); void hash_remove(hash_table *table, hash_element *hash_elem); -void hash_clear(hash_table *table); +BOOL hash_clear(hash_table *table); /*The following definitions come from lib/interface.c */ |