diff options
author | Günther Deschner <gd@samba.org> | 2009-02-06 18:31:46 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-06 18:36:40 +0100 |
commit | 117d6d1686bbbd158f0c74836c0e173c02a1b77b (patch) | |
tree | e70957487fd5bad8e98da897c130d0e958088d9b /librpc | |
parent | ab6d6c7c131d6bf23251fe3fe84765cbe73934f7 (diff) | |
download | samba-117d6d1686bbbd158f0c74836c0e173c02a1b77b.tar.gz samba-117d6d1686bbbd158f0c74836c0e173c02a1b77b.tar.bz2 samba-117d6d1686bbbd158f0c74836c0e173c02a1b77b.zip |
spoolss: fix type pointer in spoolss_GetPrinterData and related functions.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/spoolss.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 2709f6c9a0..5bac2d8241 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -767,7 +767,7 @@ import "misc.idl", "security.idl", "winreg.idl"; [in,ref] policy_handle *handle, [in] [string,charset(UTF16)] uint16 value_name[], [in] uint32 offered, - [out] spoolss_PrinterDataType type, + [out,ref] spoolss_PrinterDataType *type, [out] DATA_BLOB data, [out,ref] uint32 *needed ); @@ -779,8 +779,8 @@ import "misc.idl", "security.idl", "winreg.idl"; [in,ref] policy_handle *handle, [in] [string,charset(UTF16)] uint16 value_name[], [in] uint32 offered, - [out] spoolss_PrinterDataType type, - [out,subcontext(4),subcontext_size(offered),switch_is(type)] spoolss_PrinterData data, + [out,ref] spoolss_PrinterDataType *type, + [out,subcontext(4),subcontext_size(offered),switch_is(*type)] spoolss_PrinterData data, [out,ref] uint32 *needed ); |