diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2010-03-05 23:03:21 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-03-10 17:12:03 +0100 |
commit | d07883ed86e9073bb49c124b0212d8d41788bea6 (patch) | |
tree | cb3093cc307f0395a631ea9d45f17e005d665b45 /librpc | |
parent | 88494b2b6215a820551779a7cff8a02607e04237 (diff) | |
download | samba-d07883ed86e9073bb49c124b0212d8d41788bea6.tar.gz samba-d07883ed86e9073bb49c124b0212d8d41788bea6.tar.bz2 samba-d07883ed86e9073bb49c124b0212d8d41788bea6.zip |
s4/idl: DsWriteAccountSpn - switch types should be unsigned
Changes also propagated into source code as they are
too minor to be done in separate commit
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/drsuapi.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index b869325a8e..e8ea4b7c8d 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -1006,7 +1006,7 @@ interface drsuapi [size_is(count)] drsuapi_DsNameString *spn_names; } drsuapi_DsWriteAccountSpnRequest1; - typedef [switch_type(int32)] union { + typedef [switch_type(uint32)] union { [case(1)] drsuapi_DsWriteAccountSpnRequest1 req1; } drsuapi_DsWriteAccountSpnRequest; @@ -1014,15 +1014,15 @@ interface drsuapi WERROR status; } drsuapi_DsWriteAccountSpnResult1; - typedef [switch_type(int32)] union { + typedef [switch_type(uint32)] union { [case(1)] drsuapi_DsWriteAccountSpnResult1 res1; } drsuapi_DsWriteAccountSpnResult; WERROR drsuapi_DsWriteAccountSpn( [in] policy_handle *bind_handle, - [in] int32 level, + [in] uint32 level, [in,ref,switch_is(level)] drsuapi_DsWriteAccountSpnRequest *req, - [out,ref] int32 *level_out, + [out,ref] uint32 *level_out, [out,ref,switch_is(*level_out)] drsuapi_DsWriteAccountSpnResult *res ); |