summaryrefslogtreecommitdiff
path: root/source4/lib/registry/tools/regtree.c
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2008-09-09 18:03:54 +0200
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2008-09-09 18:03:54 +0200
commit3911808323c964c36c2639f68d59d7aca1a2a96b (patch)
tree8462cdad522bf41a88f9fba031425d60fc5f1a16 /source4/lib/registry/tools/regtree.c
parent8b6b8513909fb0c5acabea060921ed2034b3284d (diff)
downloadsamba-3911808323c964c36c2639f68d59d7aca1a2a96b.tar.gz
samba-3911808323c964c36c2639f68d59d7aca1a2a96b.tar.bz2
samba-3911808323c964c36c2639f68d59d7aca1a2a96b.zip
Fix up the "reg_common_open_remote" call
This fixes up the "reg_common_open_remote" call because it didn't work anymore without the event context. (This used to be commit 42ab865fc937a625d1eece45abe96bf354ddff8b)
Diffstat (limited to 'source4/lib/registry/tools/regtree.c')
-rw-r--r--source4/lib/registry/tools/regtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/tools/regtree.c b/source4/lib/registry/tools/regtree.c
index daca6957a1..19e4a010b4 100644
--- a/source4/lib/registry/tools/regtree.c
+++ b/source4/lib/registry/tools/regtree.c
@@ -132,7 +132,7 @@ int main(int argc, char **argv)
ev_ctx = s4_event_context_init(NULL);
if (remote != NULL) {
- h = reg_common_open_remote(remote, cmdline_lp_ctx, cmdline_credentials);
+ h = reg_common_open_remote(remote, ev_ctx, cmdline_lp_ctx, cmdline_credentials);
} else if (file != NULL) {
start_key = reg_common_open_file(file, ev_ctx, cmdline_lp_ctx, cmdline_credentials);
} else {