diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-15 17:50:22 +1100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-17 00:55:23 +0100 |
commit | 5debcb1027aec5e711605d575b210675fce3169a (patch) | |
tree | 35f7528ea02cd14d2f38911af3b5cdf79f401c6e /librpc/idl | |
parent | 0aed229710b8058878f25ce7b738ef807fb1faaa (diff) | |
download | samba-5debcb1027aec5e711605d575b210675fce3169a.tar.gz samba-5debcb1027aec5e711605d575b210675fce3169a.tar.bz2 samba-5debcb1027aec5e711605d575b210675fce3169a.zip |
idl: naming a structure 'VERSION' is not a good idea!
this renames it to ntlmssp_VERSION
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/ntlmssp.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/ntlmssp.idl b/librpc/idl/ntlmssp.idl index b9be7daea7..7c3b8fe63b 100644 --- a/librpc/idl/ntlmssp.idl +++ b/librpc/idl/ntlmssp.idl @@ -92,10 +92,10 @@ interface ntlmssp uint16 ProductBuild; uint8 Reserved[3]; ntlmssp_NTLMRevisionCurrent NTLMRevisionCurrent; - } VERSION; + } ntlmssp_VERSION; typedef [noprint,nodiscriminant] union { - [case(NTLMSSP_NEGOTIATE_VERSION)] VERSION version; + [case(NTLMSSP_NEGOTIATE_VERSION)] ntlmssp_VERSION version; [default]; } ntlmssp_Version; |