diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-04 08:22:43 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-09-05 09:16:22 -0700 |
commit | 1173fed9165dffb79cfb119b6e80e379a6fd85ba (patch) | |
tree | 307be2938428f3fc6c8ad236d343a04f452ecfea /source3/torture | |
parent | 46131cb8023a883238b67e668be2afbc4adcf1f5 (diff) | |
download | samba-1173fed9165dffb79cfb119b6e80e379a6fd85ba.tar.gz samba-1173fed9165dffb79cfb119b6e80e379a6fd85ba.tar.bz2 samba-1173fed9165dffb79cfb119b6e80e379a6fd85ba.zip |
lib: Add "mem_ctx" to gencache_get_data_blob
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |