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/printing | |
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/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 7c56512173..a0dacc14c5 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -2576,7 +2576,7 @@ static uint32 dump_a_printer(NT_PRINTER_INFO_LEVEL printer, uint32 level) DEBUGADD(106,("default_priority:[%d]\n", info2->default_priority)); DEBUGADD(106,("starttime:[%d]\n", info2->starttime)); DEBUGADD(106,("untiltime:[%d]\n", info2->untiltime)); - DEBUGADD(106,("status:[%s]\n", werror_str(info2->status))); + DEBUGADD(106,("status:[%d]\n", info2->status)); DEBUGADD(106,("cjobs:[%d]\n", info2->cjobs)); DEBUGADD(106,("averageppm:[%d]\n", info2->averageppm)); DEBUGADD(106,("changeid:[%d]\n", info2->changeid)); |