diff options
author | Jeremy Allison <jra@samba.org> | 2010-05-19 10:34:44 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-05-19 10:36:39 -0700 |
commit | b0d7a3d123cb96049dc782b317554448acdae1a2 (patch) | |
tree | 47cd4878580d27edbc85581794f10e1be78e1366 /librpc | |
parent | ac9341245af38fe019c43ad9e413dbc62e26bc7a (diff) | |
download | samba-b0d7a3d123cb96049dc782b317554448acdae1a2.tar.gz samba-b0d7a3d123cb96049dc782b317554448acdae1a2.tar.bz2 samba-b0d7a3d123cb96049dc782b317554448acdae1a2.zip |
Thanks to Andrew Bartlett's advice, fix the NTLMSSP version problem the correct way.
No more magic blobs :-). Use ndr_push_struct_blob() to
push a properly formatted VERSION struct.
Jeremy.
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/ntlmssp.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/ntlmssp.idl b/librpc/idl/ntlmssp.idl index 1227952ff2..eb9ab291fc 100644 --- a/librpc/idl/ntlmssp.idl +++ b/librpc/idl/ntlmssp.idl @@ -86,7 +86,7 @@ interface ntlmssp /* [MS-NLMP] 2.2.2.10 VERSION */ - typedef struct { + typedef [public] struct { ntlmssp_WindowsMajorVersion ProductMajorVersion; ntlmssp_WindowsMinorVersion ProductMinorVersion; uint16 ProductBuild; |