summaryrefslogtreecommitdiff
path: root/librpc/idl/drsuapi.idl
diff options
context:
space:
mode:
authorKamen Mazdrashki <kamen.mazdrashki@postpath.com>2010-03-05 21:30:40 +0200
committerStefan Metzmacher <metze@samba.org>2010-03-10 17:11:58 +0100
commit62b4b675fd73ccb082fd5cbee428a4ba976c6552 (patch)
tree6e32f3ebe3af42ffd052ddacbc5f61b2420c8a46 /librpc/idl/drsuapi.idl
parentfeb4c8a3e345ae30f35f7a61d07c3fd3f0db446a (diff)
downloadsamba-62b4b675fd73ccb082fd5cbee428a4ba976c6552.tar.gz
samba-62b4b675fd73ccb082fd5cbee428a4ba976c6552.tar.bz2
samba-62b4b675fd73ccb082fd5cbee428a4ba976c6552.zip
s4/idl: DsReplicaUpdateRefs - 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.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl
index 511439f5c9..b022493cbc 100644
--- a/librpc/idl/drsuapi.idl
+++ b/librpc/idl/drsuapi.idl
@@ -736,13 +736,13 @@ interface drsuapi
drsuapi_DrsOptions options;
} drsuapi_DsReplicaUpdateRefsRequest1;
- typedef [switch_type(int32)] union {
+ typedef [switch_type(uint32)] union {
[case(1)] drsuapi_DsReplicaUpdateRefsRequest1 req1;
} drsuapi_DsReplicaUpdateRefsRequest;
WERROR drsuapi_DsReplicaUpdateRefs(
[in] policy_handle *bind_handle,
- [in] int32 level,
+ [in] uint32 level,
[in,switch_is(level)] drsuapi_DsReplicaUpdateRefsRequest req
);