diff options
author | Tim Potter <tpot@samba.org> | 2002-01-07 06:13:40 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-01-07 06:13:40 +0000 |
commit | 17729f5dc5aa4a19fd2cdfed12f86da3e9d07ecc (patch) | |
tree | 64403dbb0af9656d89bf8eed14bfe7bbcfed44db /source3/include | |
parent | 9a02c6b4e8dcdd8bb6f2d394b1c5e9110c11a7a9 (diff) | |
download | samba-17729f5dc5aa4a19fd2cdfed12f86da3e9d07ecc.tar.gz samba-17729f5dc5aa4a19fd2cdfed12f86da3e9d07ecc.tar.bz2 samba-17729f5dc5aa4a19fd2cdfed12f86da3e9d07ecc.zip |
Sed error. The status value in the PRINTER_INFO_2 structure isn't a WERROR
but a plain old uint32.
(This used to be commit 690cc12bad2a037684a43b0dcb48be8eb03aa7bc)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/nt_printing.h | 2 | ||||
-rwxr-xr-x | source3/include/rpc_spoolss.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/nt_printing.h b/source3/include/nt_printing.h index 61abc1a31b..4c9265f09f 100644 --- a/source3/include/nt_printing.h +++ b/source3/include/nt_printing.h @@ -231,7 +231,7 @@ typedef struct nt_printer_info_level_2 uint32 default_priority; uint32 starttime; uint32 untiltime; - WERROR status; + uint32 status; uint32 cjobs; uint32 averageppm; fstring servername; diff --git a/source3/include/rpc_spoolss.h b/source3/include/rpc_spoolss.h index bd9de92dcb..e6e5e0ada2 100755 --- a/source3/include/rpc_spoolss.h +++ b/source3/include/rpc_spoolss.h @@ -1314,7 +1314,7 @@ typedef struct spool_printer_info_level_2 uint32 default_priority; uint32 starttime; uint32 untiltime; - WERROR status; + uint32 status; uint32 cjobs; uint32 averageppm; UNISTR2 servername; |