diff options
Diffstat (limited to 'source/lib/registry/tools/common.c')
-rw-r--r-- | source/lib/registry/tools/common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/lib/registry/tools/common.c b/source/lib/registry/tools/common.c index 6d766fd25c4..c9293cd3102 100644 --- a/source/lib/registry/tools/common.c +++ b/source/lib/registry/tools/common.c @@ -24,12 +24,13 @@ #include "lib/registry/tools/common.h" struct registry_context *reg_common_open_remote(const char *remote, + struct loadparm_context *lp_ctx, struct cli_credentials *creds) { struct registry_context *h; WERROR error; - error = reg_open_remote(&h, NULL, creds, remote, NULL); + error = reg_open_remote(&h, NULL, creds, lp_ctx, remote, NULL); if (!W_ERROR_IS_OK(error)) { fprintf(stderr, "Unable to open remote registry at %s:%s \n", |