diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-17 09:34:19 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-17 09:34:19 +0000 |
commit | e62c5c9a8dd1258b776d40918026a1be4b71fb72 (patch) | |
tree | 877a0934d7082d96093d420627e3d3797b67483e /source4/librpc/ndr/ndr_spoolss.h | |
parent | c562794e7477e56251baea4f954794ec189f2847 (diff) | |
download | samba-e62c5c9a8dd1258b776d40918026a1be4b71fb72.tar.gz samba-e62c5c9a8dd1258b776d40918026a1be4b71fb72.tar.bz2 samba-e62c5c9a8dd1258b776d40918026a1be4b71fb72.zip |
use [subcontext] to make GetPrinter a bit easier in smbtorture
(This used to be commit a5140985d8f57695b4165c72af217092da6fae5f)
Diffstat (limited to 'source4/librpc/ndr/ndr_spoolss.h')
-rw-r--r-- | source4/librpc/ndr/ndr_spoolss.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source4/librpc/ndr/ndr_spoolss.h b/source4/librpc/ndr/ndr_spoolss.h index 3f156b732d..33881ab41b 100644 --- a/source4/librpc/ndr/ndr_spoolss.h +++ b/source4/librpc/ndr/ndr_spoolss.h @@ -88,10 +88,6 @@ struct spoolss_PrinterInfo5 { uint32 transmission_retry_timeout; }; -struct spoolss_PrinterInfo6 { - uint32 foo; -}; - struct spoolss_PrinterInfo7 { const char * guid; uint32 action; @@ -103,7 +99,6 @@ union spoolss_PrinterInfo { /* [case(3)] */ struct spoolss_PrinterInfo3 info3; /* [case(4)] */ struct spoolss_PrinterInfo4 info4; /* [case(5)] */ struct spoolss_PrinterInfo5 info5; -/* [case(6)] */ struct spoolss_PrinterInfo6 info6; /* [case(7)] */ struct spoolss_PrinterInfo7 info7; }; @@ -218,7 +213,7 @@ struct spoolss_GetPrinter { } in; struct { - DATA_BLOB *buffer; + union spoolss_PrinterInfo *info; uint32 *buf_size; WERROR result; } out; |