diff options
author | Jeremy Allison <jra@samba.org> | 2001-05-12 20:15:39 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-05-12 20:15:39 +0000 |
commit | 495aa4c28a76bcdecd02e3d9527b29f62b3ec33f (patch) | |
tree | 4aa1f386134ceef8beb347d90a5084c501846fe3 /source3/include/proto.h | |
parent | 9c54ddc7f9adeb63b5bc83fb7cd1b90bf0faf6ec (diff) | |
download | samba-495aa4c28a76bcdecd02e3d9527b29f62b3ec33f.tar.gz samba-495aa4c28a76bcdecd02e3d9527b29f62b3ec33f.tar.bz2 samba-495aa4c28a76bcdecd02e3d9527b29f62b3ec33f.zip |
string_hash() should be static. hash_clear() should be void.
Jeremy.
(This used to be commit e8ab89fbc0b6cec9f3e80fe4327992b2ec7a4a40)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 92fd8d9566..6f12e4e275 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -136,11 +136,10 @@ char *getsmbpass(char *prompt) ; /*The following definitions come from lib/hash.c */ BOOL hash_table_init(hash_table *table, int num_buckets, compare_function compare_func); -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); -BOOL hash_clear(hash_table *table); +void hash_clear(hash_table *table); /*The following definitions come from lib/interface.c */ |