diff options
author | Jeremy Allison <jra@samba.org> | 2000-06-06 01:34:20 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-06-06 01:34:20 +0000 |
commit | 84aa9ad0493ede5acf6b1bbf901b3cbb980c5dbc (patch) | |
tree | 83cb2dc53b2c5051d1f82a29efd48b834afe9019 /source3/printing | |
parent | 6d8c131f50e708d4c009355a7c5fe026cf8d350a (diff) | |
download | samba-84aa9ad0493ede5acf6b1bbf901b3cbb980c5dbc.tar.gz samba-84aa9ad0493ede5acf6b1bbf901b3cbb980c5dbc.tar.bz2 samba-84aa9ad0493ede5acf6b1bbf901b3cbb980c5dbc.zip |
Create elements in default, not in read.
Jeremy.
(This used to be commit 0d681ea252e0cf7fdf57d316d2bfe7caa9b4fbf5)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 0f77884112..a462094111 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1010,6 +1010,13 @@ static uint32 get_a_printer_2_default(NT_PRINTER_INFO_LEVEL_2 **info_ptr, fstrin fstrcpy(info.printprocessor, "winprint"); fstrcpy(info.datatype, "RAW"); + info.attributes = PRINTER_ATTRIBUTE_SHARED \ + | PRINTER_ATTRIBUTE_LOCAL \ + | PRINTER_ATTRIBUTE_RAW_ONLY ; /* attributes */ + + info.starttime = 0; /* Minutes since 12:00am GMT */ + info.untiltime = 1440; /* Minutes since 12:00am GMT */ + if ((info.devmode = construct_nt_devicemode()) == NULL) goto fail; @@ -1076,6 +1083,8 @@ static uint32 get_a_printer_2(NT_PRINTER_INFO_LEVEL_2 **info_ptr, fstring sharen info.datatype, info.parameters); + info.attributes |= PRINTER_ATTRIBUTE_RAW_ONLY; /* Samba has to have raw drivers. */ + len += unpack_devicemode(&info.devmode,dbuf.dptr+len, dbuf.dsize-len); len += unpack_specifics(&info.specific,dbuf.dptr+len, dbuf.dsize-len); |