From: Michael R Sweet Date: Wed, 14 Nov 2018 15:15:04 +0000 (-0500) Subject: Add cupsManualCopies as needed (Issue #5433) X-Git-Tag: v2.3b6~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0c13a68b19fcb85120e5cafedf8689a68fd212c;p=thirdparty%2Fcups.git Add cupsManualCopies as needed (Issue #5433) --- diff --git a/CHANGES.md b/CHANGES.md index fe382cef11..b794d25c4d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -37,6 +37,8 @@ Changes in CUPS v2.3b6 CloseUI/JCLCloseUI keywords (Issue #5381) - The scheduler now reports the actual location of the log file (Issue #5398) - Added a USB quirk rule (Issue #5420) +- The generated PPD files for IPP Everywhere printers did not contain the + cupsManualCopies keyword (Issue #5433) - Kerberos credentials might be truncated (Issue #5435) - The scheduler was being backgrounded on macOS, causing applications to spin (rdar://40436080) diff --git a/cups/ppd-cache.c b/cups/ppd-cache.c index e4af7b6447..d82961a6d2 100644 --- a/cups/ppd-cache.c +++ b/cups/ppd-cache.c @@ -3233,6 +3233,8 @@ _ppdCreateFromIPP(char *buffer, /* I - Filename buffer */ else cupsFilePuts(fp, "*cupsFilter2: \"application/vnd.cups-pdf application/pdf 10 -\"\n"); } + else + cupsFilePuts(fp, "*cupsManualCopies: true\n"); if (is_apple) cupsFilePuts(fp, "*cupsFilter2: \"image/urf image/urf 100 -\"\n"); if (is_pwg)