diff options
author | Günther Deschner <gd@samba.org> | 2013-01-29 21:57:58 +0100 |
---|---|---|
committer | David Disseldorp <ddiss@samba.org> | 2013-05-20 18:50:00 +0200 |
commit | 393ad20577c7fa66928ecb34bc8b323feb881ea5 (patch) | |
tree | 390c36b886b85654f511578fdd899ff39ba5608e /librpc/idl | |
parent | d7708fd360c1fa1e3111fd4df266b52c96cca196 (diff) | |
download | samba-393ad20577c7fa66928ecb34bc8b323feb881ea5.tar.gz samba-393ad20577c7fa66928ecb34bc8b323feb881ea5.tar.bz2 samba-393ad20577c7fa66928ecb34bc8b323feb881ea5.zip |
spoolss: Fix two size elements in the devmode private spoolss_JTEXP struct.
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/spoolss.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index a43449b04a..57e6b49798 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -427,8 +427,8 @@ cpp_quote("#define spoolss_security_descriptor security_descriptor") uint32 dwSize; [value(SPOOLSS_DM_SIGNATURE_JTEXP)] spoolss_DM_Signature dwSignature; [value(0)] uint32 dwVersion; - [value(16)] uint32 wJTHdrSize; - uint32 wCoreMFOSize; + [value(16)] uint16 wJTHdrSize; + uint16 wCoreMFOSize; [string,charset(UTF16)] uint16 *ModelName; nstring_array FeatureOptionPairs; } spoolss_JTEXP; |