diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-03-13 11:10:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:49:31 -0500 |
commit | d0f989628a777943c7c0b1f306e967cc4ba7a63f (patch) | |
tree | aec20bb47b5618b568dbe0fc5f0e3ce3e9b99ceb | |
parent | c8cfbfdc8bf6b6bf6da948d718a65957076c5472 (diff) | |
download | samba-d0f989628a777943c7c0b1f306e967cc4ba7a63f.tar.gz samba-d0f989628a777943c7c0b1f306e967cc4ba7a63f.tar.bz2 samba-d0f989628a777943c7c0b1f306e967cc4ba7a63f.zip |
r21817: give fields a meaning
metze
(This used to be commit 521355b57b74dbdccc6ae15738345e1d989ce262)
-rw-r--r-- | source4/librpc/idl/drsuapi.idl | 4 | ||||
-rw-r--r-- | source4/torture/rpc/drsuapi.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/librpc/idl/drsuapi.idl b/source4/librpc/idl/drsuapi.idl index c1c9821d9b..f23914f8de 100644 --- a/source4/librpc/idl/drsuapi.idl +++ b/source4/librpc/idl/drsuapi.idl @@ -162,8 +162,8 @@ interface drsuapi typedef struct { drsuapi_DsReplicaObjectIdentifier *naming_context; - GUID guid1; - astring *string1; + GUID source_dsa_guid; + astring *other_info; /* I assume this is related to the repsFromTo1OtherInfo dns_name */ drsuapi_DsReplicaSyncOptions options; } drsuapi_DsReplicaSyncRequest1; diff --git a/source4/torture/rpc/drsuapi.c b/source4/torture/rpc/drsuapi.c index 0f849e5586..c0ed2953f2 100644 --- a/source4/torture/rpc/drsuapi.c +++ b/source4/torture/rpc/drsuapi.c @@ -448,8 +448,8 @@ static BOOL test_DsReplicaSync(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, nc.dn = priv->domain_obj_dn?priv->domain_obj_dn:""; r.in.req.req1.naming_context = &nc; - r.in.req.req1.guid1 = priv->dcinfo.ntds_guid; - r.in.req.req1.string1 = NULL; + r.in.req.req1.source_dsa_guid = priv->dcinfo.ntds_guid; + r.in.req.req1.other_info = NULL; r.in.req.req1.options = 16; break; } |