diff options
author | Günther Deschner <gd@samba.org> | 2009-03-16 15:44:16 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-03-17 11:14:54 +0100 |
commit | 4727e3fa9784b183d223cd0779b6748f9916a538 (patch) | |
tree | 4a6a06e907d036aab4b20509781ec30aaf9e2b72 /source4/rpc_server | |
parent | 67599539063ff1d797886ea4097c59760e8ecbc5 (diff) | |
download | samba-4727e3fa9784b183d223cd0779b6748f9916a538.tar.gz samba-4727e3fa9784b183d223cd0779b6748f9916a538.tar.bz2 samba-4727e3fa9784b183d223cd0779b6748f9916a538.zip |
s4-spoolss: use winreg_Type for GetPrinterData implementation.
Guenther
Diffstat (limited to 'source4/rpc_server')
-rw-r--r-- | source4/rpc_server/spoolss/dcesrv_spoolss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/rpc_server/spoolss/dcesrv_spoolss.c b/source4/rpc_server/spoolss/dcesrv_spoolss.c index 820fb7d39e..7d14c0e502 100644 --- a/source4/rpc_server/spoolss/dcesrv_spoolss.c +++ b/source4/rpc_server/spoolss/dcesrv_spoolss.c @@ -580,7 +580,7 @@ static WERROR dcesrv_spoolss_GetPrinterData(struct dcesrv_call_state *dce_call, if (!handle) return WERR_BADFID; - r->out.type = talloc_zero(mem_ctx, enum spoolss_PrinterDataType); + r->out.type = talloc_zero(mem_ctx, enum winreg_Type); W_ERROR_HAVE_NO_MEMORY(r->out.type); r->out.needed = talloc_zero(mem_ctx, uint32_t); @@ -601,7 +601,7 @@ static WERROR dcesrv_spoolss_GetPrinterData(struct dcesrv_call_state *dce_call, W_ERROR_NOT_OK_RETURN(status); *r->out.needed = ndr_size_spoolss_PrinterData(r->out.data, *r->out.type, ic, 0); - *r->out.type = SPOOLSS_BUFFER_OK(*r->out.type, SPOOLSS_PRINTER_DATA_TYPE_NULL); + *r->out.type = SPOOLSS_BUFFER_OK(*r->out.type, REG_NONE); r->out.data = SPOOLSS_BUFFER_OK(r->out.data, r->out.data); return SPOOLSS_BUFFER_OK(WERR_OK, WERR_MORE_DATA); } |