summaryrefslogtreecommitdiff
path: root/librpc/idl
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-04-13 14:15:21 +0200
committerGünther Deschner <gd@samba.org>2009-04-13 16:10:31 +0200
commit3918ee88701942c35dc8ed957d507076ead8d3f5 (patch)
tree949d6c3d8a14280d968f01685755defa073361b4 /librpc/idl
parent94d3047de19a73c30f218d13a4847a4d354a61aa (diff)
downloadsamba-3918ee88701942c35dc8ed957d507076ead8d3f5.tar.gz
samba-3918ee88701942c35dc8ed957d507076ead8d3f5.tar.bz2
samba-3918ee88701942c35dc8ed957d507076ead8d3f5.zip
spoolss: fix order of strings in PrinterInfo1 structs.
Guenther
Diffstat (limited to 'librpc/idl')
-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 a1bb95aa9f..98760574fb 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;