diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-04 08:56:23 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-09-05 09:16:23 -0700 |
commit | 8a7246ac2c5b27cc29e6ca23c1e2e0f43e298eb5 (patch) | |
tree | eed73a2a54d2e811e0bbfae2bbb27a5df6d48436 /source3/passdb | |
parent | f630360b7ff07ffd2a22f16d50293949860418ca (diff) | |
download | samba-8a7246ac2c5b27cc29e6ca23c1e2e0f43e298eb5.tar.gz samba-8a7246ac2c5b27cc29e6ca23c1e2e0f43e298eb5.tar.bz2 samba-8a7246ac2c5b27cc29e6ca23c1e2e0f43e298eb5.zip |
lib: Add a "mem_ctx" arg to gencache_get (unused so far)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/account_pol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/account_pol.c b/source3/passdb/account_pol.c index c94df2961a..14ff946b51 100644 --- a/source3/passdb/account_pol.c +++ b/source3/passdb/account_pol.c @@ -446,7 +446,7 @@ bool cache_account_policy_get(enum pdb_policy_type type, uint32_t *value) goto done; } - if (gencache_get(cache_key, &cache_value, NULL)) { + if (gencache_get(cache_key, NULL, &cache_value, NULL)) { uint32 tmp = strtoul(cache_value, NULL, 10); *value = tmp; ret = True; |