summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-04-13 14:15:21 +0200
committerKarolin Seeger <kseeger@samba.org>2009-04-15 09:08:22 +0200
commit8724e26fcd715e4bc7723b4f0c93cd2feed70cc8 (patch)
tree0eeac9b1d8ac334800fb19dfa36622133e6c612b /librpc
parentd9339e074b7672a89a3b8939e1cffbfc1942dfcc (diff)
downloadsamba-8724e26fcd715e4bc7723b4f0c93cd2feed70cc8.tar.gz
spoolss: fix order of strings in PrinterInfo1 structs.
Guenther (cherry picked from commit 3918ee88701942c35dc8ed957d507076ead8d3f5) (cherry picked from commit 8303246b3025e6dbda3c8f7e49ae394fd676323f)
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/spoolss.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl
index a1bb95aa9fa..98760574fb5 100644
--- a/librpc/idl/spoolss.idl
+++ b/librpc/idl/spoolss.idl
@@ -250,8 +250,8 @@ import "misc.idl", "security.idl", "winreg.idl";
typedef [public,gensize] struct {
spoolss_EnumPrinterFlags flags;
- [relative] nstring *name;
[relative] nstring *description;
+ [relative] nstring *name;
[relative] nstring *comment;
} spoolss_PrinterInfo1;
@@ -684,8 +684,8 @@ import "misc.idl", "security.idl", "winreg.idl";
typedef struct {
spoolss_EnumPrinterFlags flags;
- [string,charset(UTF16)] uint16 *name;
[string,charset(UTF16)] uint16 *description;
+ [string,charset(UTF16)] uint16 *name;
[string,charset(UTF16)] uint16 *comment;
} spoolss_SetPrinterInfo1;