From 1173fed9165dffb79cfb119b6e80e379a6fd85ba Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 4 Sep 2013 08:22:43 +0200 Subject: lib: Add "mem_ctx" to gencache_get_data_blob Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/torture/torture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/torture') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 2d7e87f3e9..15bb8f3d7f 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -8172,7 +8172,7 @@ static bool run_local_gencache(int dummy) return False; } - if (!gencache_get_data_blob("foo", &blob, NULL, NULL)) { + if (!gencache_get_data_blob("foo", NULL, &blob, NULL, NULL)) { d_printf("%s: gencache_get_data_blob() failed\n", __location__); return False; } @@ -8196,7 +8196,7 @@ static bool run_local_gencache(int dummy) return False; } - if (gencache_get_data_blob("foo", &blob, NULL, NULL)) { + if (gencache_get_data_blob("foo", NULL, &blob, NULL, NULL)) { d_printf("%s: gencache_get_data_blob() on deleted entry " "succeeded\n", __location__); return False; -- cgit