diff options
author | Gerald Carter <jerry@samba.org> | 2003-02-15 23:33:30 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-02-15 23:33:30 +0000 |
commit | 940fcdf09575788781e0b92b9080fff527363fd4 (patch) | |
tree | 16507a3bb5831d019d3f0258db4c8db9875d97ec /source3/include | |
parent | 019df92bdfa654b771f6c24470d0684b8492721b (diff) | |
download | samba-940fcdf09575788781e0b92b9080fff527363fd4.tar.gz samba-940fcdf09575788781e0b92b9080fff527363fd4.tar.bz2 samba-940fcdf09575788781e0b92b9080fff527363fd4.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 ffda9e2480414c7ed6156958f516e0d1f3c61350)
Diffstat (limited to 'source3/include')
-rwxr-xr-x | source3/include/rpc_spoolss.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/rpc_spoolss.h b/source3/include/rpc_spoolss.h index 249053403d..c2e3d92787 100755 --- a/source3/include/rpc_spoolss.h +++ b/source3/include/rpc_spoolss.h @@ -373,6 +373,10 @@ PRINTER_MESSAGE_INFO; #define PRINTER_ATTRIBUTE_RAW_ONLY 0x00001000 #define PRINTER_ATTRIBUTE_PUBLISHED 0x00002000 +#define PRINTER_ATTRIBUTE_SAMBA (PRINTER_ATTRIBUTE_RAW_ONLY|\ + PRINTER_ATTRIBUTE_SHARED|\ + PRINTER_ATTRIBUTE_NETWORK) + #define NO_PRIORITY 0 #define MAX_PRIORITY 99 #define MIN_PRIORITY 1 |