summaryrefslogtreecommitdiff
path: root/source4/lib/registry/tests
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-16 01:32:54 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-04-16 01:32:54 +0200
commit2ef07ad551d398c39a595494aaa083a932ef79aa (patch)
tree085e479e4a43e3ef05222912f60ca79e9ee49eec /source4/lib/registry/tests
parent83c8d6cc89feeec797b9185fb967b24c9c088950 (diff)
downloadsamba-2ef07ad551d398c39a595494aaa083a932ef79aa.tar.gz
samba-2ef07ad551d398c39a595494aaa083a932ef79aa.tar.bz2
samba-2ef07ad551d398c39a595494aaa083a932ef79aa.zip
Remove unused arguments from reg_open_local().
(This used to be commit fee7ea7080ec40182efc6ffe57b267444eb9389a)
Diffstat (limited to 'source4/lib/registry/tests')
-rw-r--r--source4/lib/registry/tests/registry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/tests/registry.c b/source4/lib/registry/tests/registry.c
index b19a6abffb..33512a0c8c 100644
--- a/source4/lib/registry/tests/registry.c
+++ b/source4/lib/registry/tests/registry.c
@@ -517,7 +517,7 @@ static bool setup_local_registry(struct torture_context *tctx, void **data)
struct hive_key *hive_key;
const char *filename;
- error = reg_open_local(tctx, &rctx, NULL, NULL);
+ error = reg_open_local(tctx, &rctx);
torture_assert_werr_ok(tctx, error, "Opening local registry failed");
status = torture_temp_dir(tctx, "registry-local", &tempdir);