diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-05-01 02:01:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:51:53 -0500 |
commit | 2c78837e34fdeaf3e31b6cf16a8f392b8a153ed9 (patch) | |
tree | de719c63dd42e49d82ad4a66e754ca68df417cfe /source4 | |
parent | bab99337f88853d6c7a3f418ec175b33974a3d48 (diff) | |
download | samba-2c78837e34fdeaf3e31b6cf16a8f392b8a153ed9.tar.gz samba-2c78837e34fdeaf3e31b6cf16a8f392b8a153ed9.tar.bz2 samba-2c78837e34fdeaf3e31b6cf16a8f392b8a153ed9.zip |
r22619: fix pidl warnings
metze
(This used to be commit 4105e3db317b124bb9c708d508895756c9c0c5a3)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/irpc.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/irpc.idl b/source4/librpc/idl/irpc.idl index eb3d159c7d..0a53494049 100644 --- a/source4/librpc/idl/irpc.idl +++ b/source4/librpc/idl/irpc.idl @@ -43,7 +43,7 @@ import "security.idl", "nbt.idl"; hyper release_count; } nbtd_statistics; - typedef union { + typedef [switch_type(nbtd_info_level)] union { [case(NBTD_INFO_STATISTICS)] nbtd_statistics *stats; } nbtd_info; @@ -114,7 +114,7 @@ import "security.idl", "nbt.idl"; [size_is(num_tcons)] smbsrv_tcon_info *tcons; } smbsrv_tcons; - typedef union { + typedef [switch_type(smbsrv_info_level)] union { [case(SMBSRV_INFO_SESSIONS)] smbsrv_sessions sessions; [case(SMBSRV_INFO_TCONS)] smbsrv_tcons tcons; } smbsrv_info; |