1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

s4/idl: DsReplicaDel - switch types should be unsigned

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Kamen Mazdrashki 2010-03-04 17:19:32 +02:00 committed by Stefan Metzmacher
parent 9f71ffb06c
commit 4ea818e349

View File

@ -785,13 +785,13 @@ interface drsuapi
drsuapi_DrsOptions options;
} drsuapi_DsReplicaDelRequest1;
typedef [switch_type(int32)] union {
typedef [switch_type(uint32)] union {
[case(1)] drsuapi_DsReplicaDelRequest1 req1;
} drsuapi_DsReplicaDelRequest;
WERROR drsuapi_DsReplicaDel(
[in] policy_handle *bind_handle,
[in] int32 level,
[in] uint32 level,
[in,switch_is(level)] drsuapi_DsReplicaDelRequest req
);