diff options
author | Simo Sorce <ssorce@redhat.com> | 2009-12-08 14:05:22 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-08 23:35:30 -0500 |
commit | 4fdcab8ba579b481870d5a6a422fcca70712d30f (patch) | |
tree | e037f61d3f660cdd5011c0c56ae4819067b2614d /server/util | |
parent | 4532cccb737b60330b43e886a82e28458ca3b956 (diff) | |
download | sssd-4fdcab8ba579b481870d5a6a422fcca70712d30f.tar.gz sssd-4fdcab8ba579b481870d5a6a422fcca70712d30f.tar.bz2 sssd-4fdcab8ba579b481870d5a6a422fcca70712d30f.zip |
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.
Diffstat (limited to 'server/util')
-rw-r--r-- | server/util/find_uid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/util/find_uid.c b/server/util/find_uid.c index 09c47b3d..63907f17 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; |