summaryrefslogtreecommitdiff
path: root/librpc/idl/drsuapi.idl
diff options
context:
space:
mode:
authorKamen Mazdrashki <kamen.mazdrashki@postpath.com>2010-03-04 17:55:46 +0200
committerStefan Metzmacher <metze@samba.org>2010-03-10 17:12:01 +0100
commit00135d83f435d778229ac94cc5e5e083fce7a746 (patch)
tree84b2bfa325dadf316e8b7d0cf9ce49feaf9c95b1 /librpc/idl/drsuapi.idl
parent890d408feaa8c7761021d91f382bc7bfdb0c293d (diff)
downloadsamba-00135d83f435d778229ac94cc5e5e083fce7a746.tar.gz
samba-00135d83f435d778229ac94cc5e5e083fce7a746.tar.bz2
samba-00135d83f435d778229ac94cc5e5e083fce7a746.zip
s4/idl: DsGetMemberships - switch types should be unsigned
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'librpc/idl/drsuapi.idl')
-rw-r--r--librpc/idl/drsuapi.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl
index 6580d33875..dbbb4f133b 100644
--- a/librpc/idl/drsuapi.idl
+++ b/librpc/idl/drsuapi.idl
@@ -845,7 +845,7 @@ interface drsuapi
[size_is(num_sids)] dom_sid28 **sids;
} drsuapi_DsGetMembershipsCtr1;
- typedef [switch_type(int32)] union {
+ typedef [switch_type(uint32)] union {
[case(1)] drsuapi_DsGetMembershipsCtr1 ctr1;
} drsuapi_DsGetMembershipsCtr;
@@ -859,15 +859,15 @@ interface drsuapi
drsuapi_DsReplicaObjectIdentifier *domain;
} drsuapi_DsGetMembershipsRequest1;
- typedef [switch_type(int32)] union {
+ typedef [switch_type(uint32)] union {
[case(1)] drsuapi_DsGetMembershipsRequest1 req1;
} drsuapi_DsGetMembershipsRequest;
[todo] WERROR drsuapi_DsGetMemberships(
[in] policy_handle *bind_handle,
- [in] int32 level,
+ [in] uint32 level,
[in,ref] [switch_is(level)] drsuapi_DsGetMembershipsRequest *req,
- [out,ref] int32 *level_out,
+ [out,ref] uint32 *level_out,
[out,ref] [switch_is(*level_out)] drsuapi_DsGetMembershipsCtr *ctr
);