summaryrefslogtreecommitdiffstats
path: root/source3/libnet
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-07-30 17:44:22 +0200
committerMichael Adam <obnox@samba.org>2008-08-01 16:07:05 +0200
commit072bd871946134b3c5e57809b4831ed6fe5586b2 (patch)
treebd55bcf4109d4be8fb567fdc38f790adf875e606 /source3/libnet
parentf060b744efe6af1ad1a21e9e155b30eab502f81a (diff)
downloadsamba-072bd871946134b3c5e57809b4831ed6fe5586b2.tar.gz
samba-072bd871946134b3c5e57809b4831ed6fe5586b2.tar.xz
samba-072bd871946134b3c5e57809b4831ed6fe5586b2.zip
libnet dssync: rename repl_nodiff flag to force_full_replication.
Michael (This used to be commit ec959b4609c3f4927a9f2811c46d738f9c78a914)
Diffstat (limited to 'source3/libnet')
-rw-r--r--source3/libnet/libnet_dssync.c2
-rw-r--r--source3/libnet/libnet_dssync.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/libnet/libnet_dssync.c b/source3/libnet/libnet_dssync.c
index f3b23638248..8f13cc8e24b 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 56de46ff345..064763d5893 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;