From 8a7246ac2c5b27cc29e6ca23c1e2e0f43e298eb5 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 4 Sep 2013 08:56:23 +0200 Subject: lib: Add a "mem_ctx" arg to gencache_get (unused so far) Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/auth/user_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/auth') diff --git a/source3/auth/user_util.c b/source3/auth/user_util.c index 082c885f7a..b52f1dd5bc 100644 --- a/source3/auth/user_util.c +++ b/source3/auth/user_util.c @@ -96,7 +96,7 @@ static bool fetch_map_from_gencache(TALLOC_CTX *ctx, if (key == NULL) { return false; } - found = gencache_get(key, &value, NULL); + found = gencache_get(key, NULL, &value, NULL); TALLOC_FREE(key); if (!found) { return false; -- cgit