From 072bd871946134b3c5e57809b4831ed6fe5586b2 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 30 Jul 2008 17:44:22 +0200 Subject: libnet dssync: rename repl_nodiff flag to force_full_replication. Michael (This used to be commit ec959b4609c3f4927a9f2811c46d738f9c78a914) --- source3/libnet/libnet_dssync.c | 2 +- source3/libnet/libnet_dssync.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/libnet') diff --git a/source3/libnet/libnet_dssync.c b/source3/libnet/libnet_dssync.c index f3b2363824..8f13cc8e24 100644 --- a/source3/libnet/libnet_dssync.c +++ b/source3/libnet/libnet_dssync.c @@ -401,7 +401,7 @@ static NTSTATUS libnet_dssync_build_request(TALLOC_CTX *mem_ctx, nc->guid = GUID_zero(); nc->sid = null_sid; - if (!ctx->single && !ctx->repl_nodiff && utdv) { + if (!ctx->single && !ctx->force_full_replication && utdv) { cursors = TALLOC_ZERO_P(mem_ctx, struct drsuapi_DsReplicaCursorCtrEx); if (!cursors) { diff --git a/source3/libnet/libnet_dssync.h b/source3/libnet/libnet_dssync.h index 56de46ff34..064763d589 100644 --- a/source3/libnet/libnet_dssync.h +++ b/source3/libnet/libnet_dssync.h @@ -36,7 +36,7 @@ struct dssync_context { struct rpc_pipe_client *cli; const char *nc_dn; bool single; - bool repl_nodiff; + bool force_full_replication; uint32_t object_count; const char **object_dns; struct policy_handle bind_handle; -- cgit