From 4fdcab8ba579b481870d5a6a422fcca70712d30f Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 8 Dec 2009 14:05:22 -0500 Subject: dhash: Add private pointer for delete callback Also pass a flag to the delete callback to tell it if this is a normal entry removal or we are cleaning up the tbale definitively. --- server/util/find_uid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/util/find_uid.c') diff --git a/server/util/find_uid.c b/server/util/find_uid.c index 09c47b3d8..63907f17a 100644 --- a/server/util/find_uid.c +++ b/server/util/find_uid.c @@ -263,7 +263,8 @@ errno_t get_uid_table(TALLOC_CTX *mem_ctx, hash_table_t **table) int ret; ret = hash_create_ex(INITIAL_TABLE_SIZE, table, 0, 0, 0, 0, - hash_talloc, hash_talloc_free, mem_ctx, NULL); + hash_talloc, hash_talloc_free, mem_ctx, + NULL, NULL); if (ret != HASH_SUCCESS) { DEBUG(1, ("hash_create_ex failed [%s]\n", hash_error_string(ret))); return ENOMEM; -- cgit