From: msweet Date: Thu, 13 Feb 2014 19:49:51 +0000 (+0000) Subject: Make sure job template attributes are included in Validate-Job requests. X-Git-Tag: v2.2b1~760 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=392aa79d2d26258a7caf1b562405c8dbd62d74e2;p=thirdparty%2Fcups.git Make sure job template attributes are included in Validate-Job requests. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11587 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/CHANGES-1.7.txt b/CHANGES-1.7.txt index a5084676b..6905fa9ca 100644 --- a/CHANGES-1.7.txt +++ b/CHANGES-1.7.txt @@ -3,6 +3,8 @@ CHANGES-1.7.txt CHANGES IN CUPS V1.7.2 + - The IPP backend might not include all job attributes in Validate-Job + operations () - Fixed some clang-reported issues () diff --git a/cups/encode.c b/cups/encode.c index 81b48fb50..9e9e19aab 100644 --- a/cups/encode.c +++ b/cups/encode.c @@ -33,6 +33,7 @@ static const ipp_op_t ipp_job_creation[] = { IPP_OP_PRINT_JOB, IPP_OP_PRINT_URI, + IPP_OP_VALIDATE_JOB, IPP_OP_CREATE_JOB, IPP_OP_CUPS_NONE }; @@ -60,6 +61,7 @@ static const ipp_op_t ipp_all_print[] = { IPP_OP_PRINT_JOB, IPP_OP_PRINT_URI, + IPP_OP_VALIDATE_JOB, IPP_OP_CREATE_JOB, IPP_OP_SEND_DOCUMENT, IPP_OP_SEND_URI,