diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-12-06 15:17:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:23 -0500 |
commit | a7e97c1eccf7f8b7dca701349a7b0dadd2ba309a (patch) | |
tree | 114acec3242a2a95d874fb2ef504e7719f1c243c | |
parent | 2a45d1b9780f85b07e21c67a468edc71e90fa7b3 (diff) | |
download | samba-a7e97c1eccf7f8b7dca701349a7b0dadd2ba309a.tar.gz samba-a7e97c1eccf7f8b7dca701349a7b0dadd2ba309a.tar.bz2 samba-a7e97c1eccf7f8b7dca701349a7b0dadd2ba309a.zip |
r4078: use clearer names
metze
(This used to be commit 717f7c3555ecf6265b5b30783f3214f4ca3b6c00)
-rw-r--r-- | source4/librpc/idl/drsblobs.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/librpc/idl/drsblobs.idl b/source4/librpc/idl/drsblobs.idl index 4a3cf2bb45..d583828198 100644 --- a/source4/librpc/idl/drsblobs.idl +++ b/source4/librpc/idl/drsblobs.idl @@ -95,7 +95,7 @@ interface drsblobs { typedef [gensize,flag(NDR_PAHEX)] struct { /* this includes the 8 bytes of the repsFromToBlob header */ [value(ndr_size_repsFromTo1(8, r, ndr->flags))] uint32 blobsize; - uint32 consecutive_failures; + uint32 consecutive_sync_failures; NTTIME_1sec last_success; NTTIME_1sec last_attempt; WERROR result_last_attempt; @@ -107,8 +107,8 @@ interface drsblobs { uint64 tmp_highest_usn; /* updated after each object update */ uint64 reserved_usn; uint64 highest_usn; /* updated after a full replication cycle */ - GUID dsa_guid; /* the 'objectGuid' field of the CN=NTDS Settings object */ - GUID invocation_id_guid; /* the 'invocationId' field of the CN=NTDS Settings object */ + GUID source_dsa_obj_guid; /* the 'objectGuid' field of the CN=NTDS Settings object */ + GUID source_dsa_invocation_id; /* the 'invocationId' field of the CN=NTDS Settings object */ GUID transport_guid; } repsFromTo1; |