diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2010-03-04 17:53:03 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-03-10 17:12:00 +0100 |
commit | 890d408feaa8c7761021d91f382bc7bfdb0c293d (patch) | |
tree | 06f7ddd87c0f30aa88f25f4482fc5cca62efad95 /librpc | |
parent | 4ea818e349fd30d2f0289bb6742455d3a3469fc9 (diff) | |
download | samba-890d408feaa8c7761021d91f382bc7bfdb0c293d.tar.gz samba-890d408feaa8c7761021d91f382bc7bfdb0c293d.tar.bz2 samba-890d408feaa8c7761021d91f382bc7bfdb0c293d.zip |
s4/idl: DsReplicaMod - switch types should be unsigned
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/drsuapi.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index e108d8fe1c..6580d33875 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -808,13 +808,13 @@ interface drsuapi drsuapi_DrsOptions options; } drsuapi_DsReplicaModRequest1; - typedef [switch_type(int32)] union { + typedef [switch_type(uint32)] union { [case(1)] drsuapi_DsReplicaModRequest1 req1; } drsuapi_DsReplicaModRequest; WERROR drsuapi_DsReplicaMod( [in] policy_handle *bind_handle, - [in] int32 level, + [in] uint32 level, [in,switch_is(level)] drsuapi_DsReplicaModRequest req ); |