summaryrefslogtreecommitdiff
path: root/source3/torture
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-11-02 13:01:58 +0100
committerGünther Deschner <gd@samba.org>2009-11-02 13:04:26 +0100
commitf35a1b95aa6f50cb1bc919f4ab502ef2c38f6bf5 (patch)
tree57a496ecba77d6ce898c46f77c3b72e5e3651b9d /source3/torture
parentad6ee94950c0977463194b64faee9b012049bfd0 (diff)
downloadsamba-f35a1b95aa6f50cb1bc919f4ab502ef2c38f6bf5.tar.gz
samba-f35a1b95aa6f50cb1bc919f4ab502ef2c38f6bf5.tar.bz2
samba-f35a1b95aa6f50cb1bc919f4ab502ef2c38f6bf5.zip
s3-gencache: restore gencache_get behavior with NULL args (with torture test).
Without this, we panic in wins_srv_is_dead() and fail to start nmbd with wins support. Volker, please check. Guenther
Diffstat (limited to 'source3/torture')
-rw-r--r--source3/torture/torture.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c
index ca499a9fcc..bda82f2b74 100644
--- a/source3/torture/torture.c
+++ b/source3/torture/torture.c
@@ -6431,6 +6431,11 @@ static bool run_local_gencache(int dummy)
return False;
}
+ if (!gencache_get("foo", NULL, NULL)) {
+ d_printf("%s: gencache_get() failed\n", __location__);
+ return False;
+ }
+
if (!gencache_get("foo", &val, &tm)) {
d_printf("%s: gencache_get() failed\n", __location__);
return False;