From 6ee16cefc98c8a033664be476be4446599450d23 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 13 Jul 2012 00:16:09 +0200 Subject: s4:registry: add a TALLOC_CTX argument to reg_open_remote() --- source4/lib/registry/registry.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/lib/registry/registry.h') diff --git a/source4/lib/registry/registry.h b/source4/lib/registry/registry.h index 8a8271e3c9..c22038cbfa 100644 --- a/source4/lib/registry/registry.h +++ b/source4/lib/registry/registry.h @@ -379,7 +379,8 @@ WERROR reg_open_samba(TALLOC_CTX *mem_ctx, /** * Open the registry on a remote machine. */ -WERROR reg_open_remote(struct registry_context **ctx, +WERROR reg_open_remote(TALLOC_CTX *mem_ctx, + struct registry_context **ctx, struct auth_session_info *session_info, struct cli_credentials *credentials, struct loadparm_context *lp_ctx, -- cgit