diff options
author | Günther Deschner <gd@samba.org> | 2009-02-26 23:40:58 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-27 13:33:15 +0100 |
commit | 670a22852c4d71883292a8361ef1eb0da99088b1 (patch) | |
tree | 84571359f9e1523a62b4e94d32bc4eef197092f0 /source3/rpc_server | |
parent | 62db0ea0cfe215b83f7ec94b77f10ef49175c7ae (diff) | |
download | samba-670a22852c4d71883292a8361ef1eb0da99088b1.tar.gz samba-670a22852c4d71883292a8361ef1eb0da99088b1.tar.bz2 samba-670a22852c4d71883292a8361ef1eb0da99088b1.zip |
s3-spoolss: use DSPRINT flags instead of SPOOLS_DS flags.
Guenther
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_spoolss_nt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c index 7a580517d3..814f406e87 100644 --- a/source3/rpc_server/srv_spoolss_nt.c +++ b/source3/rpc_server/srv_spoolss_nt.c @@ -4353,10 +4353,10 @@ static bool construct_printer_info_7(Printer_entry *print_hnd, PRINTER_INFO_7 *p strupper_m(guid_str); init_unistr(&printer->guid, guid_str); SAFE_FREE(guid_str); - printer->action = SPOOL_DS_PUBLISH; + printer->action = DSPRINT_PUBLISH; } else { init_unistr(&printer->guid, ""); - printer->action = SPOOL_DS_UNPUBLISH; + printer->action = DSPRINT_UNPUBLISH; } return True; |