diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2010-02-14 02:40:07 +0200 |
---|---|---|
committer | Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | 2010-02-24 14:14:08 +0200 |
commit | 30ac3caade8d204b859d9b3ed4c51bdbeaaa3cbf (patch) | |
tree | 83683ed7871f9e50a062066b2363d6fbe4b21458 /source4/torture | |
parent | fb9880d6e89a48d2588edbe753bbb4c90fb01173 (diff) | |
download | samba-30ac3caade8d204b859d9b3ed4c51bdbeaaa3cbf.tar.gz samba-30ac3caade8d204b859d9b3ed4c51bdbeaaa3cbf.tar.bz2 samba-30ac3caade8d204b859d9b3ed4c51bdbeaaa3cbf.zip |
s4/drs: Propagate drsuapi_DsReplicaGetInfoRequest... changes into source code
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/drsuapi.c | 4 | ||||
-rw-r--r-- | source4/torture/rpc/dsgetinfo.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/torture/rpc/drsuapi.c b/source4/torture/rpc/drsuapi.c index 24083bbe45..6d3c7c07c2 100644 --- a/source4/torture/rpc/drsuapi.c +++ b/source4/torture/rpc/drsuapi.c @@ -360,12 +360,12 @@ static bool test_DsReplicaGetInfo(struct torture_context *tctx, case DRSUAPI_DS_REPLICA_GET_INFO: r.in.req->req1.info_type = array[i].infotype; r.in.req->req1.object_dn = object_dn; - ZERO_STRUCT(r.in.req->req1.guid1); + ZERO_STRUCT(r.in.req->req1.source_dsa_guid); break; case DRSUAPI_DS_REPLICA_GET_INFO2: r.in.req->req2.info_type = array[i].infotype; r.in.req->req2.object_dn = object_dn; - ZERO_STRUCT(r.in.req->req2.guid1); + ZERO_STRUCT(r.in.req->req2.source_dsa_guid); r.in.req->req2.flags = 0; r.in.req->req2.string1 = NULL; r.in.req->req2.string2 = NULL; diff --git a/source4/torture/rpc/dsgetinfo.c b/source4/torture/rpc/dsgetinfo.c index 418f5b4530..fbe4fa2d57 100644 --- a/source4/torture/rpc/dsgetinfo.c +++ b/source4/torture/rpc/dsgetinfo.c @@ -262,12 +262,12 @@ static bool test_getinfo(struct torture_context *tctx, case DRSUAPI_DS_REPLICA_GET_INFO: r.in.req->req1.info_type = array[i].infotype; r.in.req->req1.object_dn = object_dn; - ZERO_STRUCT(r.in.req->req1.guid1); + ZERO_STRUCT(r.in.req->req1.source_dsa_guid); break; case DRSUAPI_DS_REPLICA_GET_INFO2: r.in.req->req2.info_type = array[i].infotype; r.in.req->req2.object_dn = object_dn; - ZERO_STRUCT(r.in.req->req2.guid1); + ZERO_STRUCT(r.in.req->req2.source_dsa_guid); r.in.req->req2.flags = 0; r.in.req->req2.string1 = NULL; r.in.req->req2.string2 = NULL; |