diff options
Diffstat (limited to 'source3/passdb/account_pol.c')
-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; |