summaryrefslogtreecommitdiff
path: root/librpc/idl/drsuapi.idl
diff options
context:
space:
mode:
authorKamen Mazdrashki <kamen.mazdrashki@postpath.com>2010-03-05 22:37:44 +0200
committerStefan Metzmacher <metze@samba.org>2010-03-10 17:12:02 +0100
commitd22eaddf95386081e6ae41fd770142f9ba159ca1 (patch)
tree37c7058080f38ab1af351ba03fdb8922163e4f0e /librpc/idl/drsuapi.idl
parent00135d83f435d778229ac94cc5e5e083fce7a746 (diff)
downloadsamba-d22eaddf95386081e6ae41fd770142f9ba159ca1.tar.gz
samba-d22eaddf95386081e6ae41fd770142f9ba159ca1.tar.bz2
samba-d22eaddf95386081e6ae41fd770142f9ba159ca1.zip
s4/idl: DsCrackNames - 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 dbbb4f133b..b869325a8e 100644
--- a/librpc/idl/drsuapi.idl
+++ b/librpc/idl/drsuapi.idl
@@ -963,7 +963,7 @@ interface drsuapi
[size_is(count)] drsuapi_DsNameString *names;
} drsuapi_DsNameRequest1;
- typedef [switch_type(int32)] union {
+ typedef [switch_type(uint32)] union {
[case(1)] drsuapi_DsNameRequest1 req1;
} drsuapi_DsNameRequest;
@@ -978,15 +978,15 @@ interface drsuapi
[size_is(count)] drsuapi_DsNameInfo1 *array;
} drsuapi_DsNameCtr1;
- typedef [switch_type(int32)] union {
+ typedef [switch_type(uint32)] union {
[case(1)] drsuapi_DsNameCtr1 *ctr1;
} drsuapi_DsNameCtr;
WERROR drsuapi_DsCrackNames(
[in] policy_handle *bind_handle,
- [in] int32 level,
+ [in] uint32 level,
[in,ref,switch_is(level)] drsuapi_DsNameRequest *req,
- [out,ref] int32 *level_out,
+ [out,ref] uint32 *level_out,
[out,ref,switch_is(*level_out)] drsuapi_DsNameCtr *ctr
);