diff options
author | Gerald Carter <jerry@samba.org> | 2003-02-15 23:36:18 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-02-15 23:36:18 +0000 |
commit | a703d55cd7558ef45de435d631bf5315fb616192 (patch) | |
tree | 1f99cef9c3da9e676ef4dda666abcf92df5f8558 /source3/printing/nt_printing.c | |
parent | 22c875943d2e8efe87c5f5049ace37d1135eb187 (diff) | |
download | samba-a703d55cd7558ef45de435d631bf5315fb616192.tar.gz samba-a703d55cd7558ef45de435d631bf5315fb616192.tar.bz2 samba-a703d55cd7558ef45de435d631bf5315fb616192.zip |
* set PRINTER_ATTRIBUTE_RAW_ONLY; CR 1736
* never save a pointer to an automatic variable (they go away)
implement a deep copy for SPOOLSS_NOTIFY_MSG to correct
messages being sent that have junk for strings;
fix in response to changes for CR 1504
(This used to be commit 043b9dff22e909fc290c34d879cad8b4c980fc13)
Diffstat (limited to 'source3/printing/nt_printing.c')
-rw-r--r-- | source3/printing/nt_printing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 73f1dd5f0d..10d490a4c1 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -3132,7 +3132,7 @@ static WERROR 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_NETWORK; /* attributes */ + info.attributes = PRINTER_ATTRIBUTE_SAMBA; info.starttime = 0; /* Minutes since 12:00am GMT */ info.untiltime = 0; /* Minutes since 12:00am GMT */ @@ -3224,7 +3224,7 @@ static WERROR get_a_printer_2(NT_PRINTER_INFO_LEVEL_2 **info_ptr, fstring sharen info.parameters); /* Samba has to have shared raw drivers. */ - info.attributes |= (PRINTER_ATTRIBUTE_SHARED | PRINTER_ATTRIBUTE_NETWORK); + info.attributes |= PRINTER_ATTRIBUTE_SAMBA; /* Restore the stripped strings. */ slprintf(info.servername, sizeof(info.servername)-1, "\\\\%s", get_called_name()); |