diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2010-02-12 00:15:10 +0200 |
---|---|---|
committer | Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | 2010-02-24 14:14:06 +0200 |
commit | f1a33a6cfeafe5dd34ab1e9176bc2ffbf136a117 (patch) | |
tree | ec15cd2de7d32c50f7bbc054a59a18ad8edb9c3c /librpc/idl | |
parent | 6346ec0c1cadd54f2fa10f7dc0a39a3791bed822 (diff) | |
download | samba-f1a33a6cfeafe5dd34ab1e9176bc2ffbf136a117.tar.gz samba-f1a33a6cfeafe5dd34ab1e9176bc2ffbf136a117.tar.bz2 samba-f1a33a6cfeafe5dd34ab1e9176bc2ffbf136a117.zip |
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
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/drsuapi.idl | 4 |
1 files changed, 2 insertions, 2 deletions
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 <guid>._msdcs.<domain_dns> form */ drsuapi_DrsOptions options; } drsuapi_DsReplicaSyncRequest1; |