From 962beb287239b525ed4828ae13b85de31448d256 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 3 Jul 2008 15:15:57 +0200 Subject: Pass NULL to gencache_get when we are not interested in the timeout value (This used to be commit 16062dfc3dcc8f1ca0024a3ae21effb889c7ffc0) --- 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 d8add208f5..98dd900941 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -4933,7 +4933,7 @@ static bool run_local_gencache(int dummy) return False; } - if (!gencache_get("foo", &val, &tm)) { + if (!gencache_get("foo", &val, NULL)) { d_printf("%s: gencache_get() failed\n", __location__); return False; } @@ -4957,7 +4957,7 @@ static bool run_local_gencache(int dummy) return False; } - if (gencache_get("foo", &val, &tm)) { + if (gencache_get("foo", &val, NULL)) { d_printf("%s: gencache_get() on deleted entry " "succeeded\n", __location__); return False; -- cgit