diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-02-01 10:28:28 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-02-02 11:58:26 +0100 |
commit | 64ea7bd2c41186a877c0554968193b445de00680 (patch) | |
tree | 1397eb387b0c631c075287d6ae33f66699a48318 /librpc/idl | |
parent | 4507d2b9eb2ddabf8b101ed1c744981014298049 (diff) | |
download | samba-64ea7bd2c41186a877c0554968193b445de00680.tar.gz samba-64ea7bd2c41186a877c0554968193b445de00680.tar.bz2 samba-64ea7bd2c41186a877c0554968193b445de00680.zip |
netlogon.idl: add missing [default]; union arms
metze
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/netlogon.idl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl index ca974a6c86..eab8a03dcc 100644 --- a/librpc/idl/netlogon.idl +++ b/librpc/idl/netlogon.idl @@ -179,6 +179,7 @@ interface netlogon [case(NetlogonInteractiveTransitiveInformation)] netr_PasswordInfo *password; [case(NetlogonNetworkTransitiveInformation)] netr_NetworkInfo *network; [case(NetlogonServiceTransitiveInformation)] netr_PasswordInfo *password; + [default]; } netr_LogonLevel; typedef [public,flag(NDR_PAHEX)] struct { @@ -291,6 +292,7 @@ interface netlogon [case(4)] netr_PacInfo *pac; [case(NetlogonValidationGenericInfo2)] netr_GenericInfo2 *generic; [case(NetlogonValidationSamInfo4)] netr_SamInfo6 *sam6; + [default]; } netr_Validation; typedef [public, flag(NDR_PAHEX)] struct { @@ -703,6 +705,7 @@ interface netlogon [case(NETR_DELTA_DELETE_GROUP2)] netr_DELTA_DELETE_USER *delete_group; [case(NETR_DELTA_DELETE_USER2)] netr_DELTA_DELETE_USER *delete_user; [case(NETR_DELTA_MODIFY_COUNT)] udlong *modified_count; + [default]; } netr_DELTA_UNION; typedef [switch_type(netr_DeltaEnum)] union { @@ -728,6 +731,7 @@ interface netlogon [case(NETR_DELTA_DELETE_GROUP2)] uint32 rid; [case(NETR_DELTA_DELETE_USER2)] uint32 rid; [case(NETR_DELTA_MODIFY_COUNT)] ; + [default]; } netr_DELTA_ID_UNION; typedef struct { |