From f1a33a6cfeafe5dd34ab1e9176bc2ffbf136a117 Mon Sep 17 00:00:00 2001 From: Kamen Mazdrashki Date: Fri, 12 Feb 2010 00:15:10 +0200 Subject: s4/idl: drsuapi.idl fix drsuapi_DsReplicaSyncRequest1 description - pointer to naming_context should be [ref] pointer (i.e. not NULL pointer) - other_info is actually the DNS name for Source DSA and is used if DRSUAPI_DRS_SYNC_BYNAME is passed ref: [MS-DRSR] 5.39 --- librpc/idl/drsuapi.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'librpc') diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index e98cd29602..b54b7a82a3 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -222,9 +222,9 @@ interface drsuapi } drsuapi_DsReplicaSyncOptions; typedef struct { - drsuapi_DsReplicaObjectIdentifier *naming_context; + [ref] drsuapi_DsReplicaObjectIdentifier *naming_context; GUID source_dsa_guid; - astring *other_info; /* I assume this is related to the repsFromTo1OtherInfo dns_name */ + astring *source_dsa_dns; /* Source DSA dns_name in ._msdcs. form */ drsuapi_DrsOptions options; } drsuapi_DsReplicaSyncRequest1; -- cgit