s4:registry:regdiff: add TALLOC_CTX * argument to open_backend()
authorMichael Adam <obnox@samba.org>
Thu, 12 Jul 2012 22:20:03 +0000 (00:20 +0200)
committerMichael Adam <obnox@samba.org>
Thu, 12 Jul 2012 22:57:20 +0000 (00:57 +0200)
source4/lib/registry/tools/regdiff.c

index 3683e76da6614f968753390369d14340c0848ae1..08c88a62edf40dfabe6bcc3e2b01e38b542b7834 100644 (file)
@@ -28,7 +28,8 @@
 
 enum reg_backend { REG_UNKNOWN, REG_LOCAL, REG_REMOTE, REG_NULL };
 
-static struct registry_context *open_backend(poptContext pc,
+static struct registry_context *open_backend(TALLOC_CTX *mem_ctx,
+                                            poptContext pc,
                                             struct tevent_context *ev_ctx,
                                             struct loadparm_context *lp_ctx,
                                             enum reg_backend backend,
@@ -42,14 +43,14 @@ static struct registry_context *open_backend(poptContext pc,
                poptPrintUsage(pc, stderr, 0);
                return NULL;
        case REG_LOCAL:
-               error = reg_open_samba(NULL, &ctx, ev_ctx, lp_ctx, NULL, cmdline_credentials);
+               error = reg_open_samba(mem_ctx, &ctx, ev_ctx, lp_ctx, NULL, cmdline_credentials);
                break;
        case REG_REMOTE:
-               error = reg_open_remote(NULL, &ctx, NULL, cmdline_credentials, lp_ctx,
+               error = reg_open_remote(mem_ctx, &ctx, NULL, cmdline_credentials, lp_ctx,
                                        remote_host, ev_ctx);
                break;
        case REG_NULL:
-               error = reg_open_local(NULL, &ctx);
+               error = reg_open_local(mem_ctx, &ctx);
                break;
        }
 
@@ -120,11 +121,11 @@ int main(int argc, const char **argv)
 
        ev_ctx = s4_event_context_init(NULL);
 
-       h1 = open_backend(pc, ev_ctx, cmdline_lp_ctx, backend1, remote1);
+       h1 = open_backend(ctx, pc, ev_ctx, cmdline_lp_ctx, backend1, remote1);
        if (h1 == NULL)
                return 1;
 
-       h2 = open_backend(pc, ev_ctx, cmdline_lp_ctx, backend2, remote2);
+       h2 = open_backend(ctx, pc, ev_ctx, cmdline_lp_ctx, backend2, remote2);
        if (h2 == NULL)
                return 1;