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/printing | |
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/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index b254ce0b95..d8658e9280 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -3425,8 +3425,8 @@ WERROR nt_printer_publish(Printer_entry *print_hnd, int snum, int action) goto done; switch (action) { - case SPOOL_DS_PUBLISH: - case SPOOL_DS_UPDATE: + case DSPRINT_PUBLISH: + case DSPRINT_UPDATE: /* set the DsSpooler info and attributes */ if (!(map_nt_printer_info2_to_dsspooler(printer->info_2))) { win_rc = WERR_NOMEM; @@ -3435,7 +3435,7 @@ WERROR nt_printer_publish(Printer_entry *print_hnd, int snum, int action) printer->info_2->attributes |= PRINTER_ATTRIBUTE_PUBLISHED; break; - case SPOOL_DS_UNPUBLISH: + case DSPRINT_UNPUBLISH: printer->info_2->attributes ^= PRINTER_ATTRIBUTE_PUBLISHED; break; default: @@ -3469,11 +3469,11 @@ WERROR nt_printer_publish(Printer_entry *print_hnd, int snum, int action) } switch (action) { - case SPOOL_DS_PUBLISH: - case SPOOL_DS_UPDATE: + case DSPRINT_PUBLISH: + case DSPRINT_UPDATE: win_rc = nt_printer_publish_ads(ads, printer); break; - case SPOOL_DS_UNPUBLISH: + case DSPRINT_UNPUBLISH: win_rc = nt_printer_unpublish_ads(ads, printer); break; } |