From: msweet Date: Fri, 9 May 2014 20:45:53 +0000 (+0000) Subject: The scheduler did not add the "job-hold-until-specified" reason when holding a X-Git-Tag: v2.2b1~640 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67dde2ccb96aff853359a1136375d1d61add2deb;p=thirdparty%2Fcups.git The scheduler did not add the "job-hold-until-specified" reason when holding a job using the lp command (STR #4405) git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11868 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/CHANGES-1.7.txt b/CHANGES-1.7.txt index d1880c3ab3..8a56059471 100644 --- a/CHANGES-1.7.txt +++ b/CHANGES-1.7.txt @@ -3,6 +3,7 @@ CHANGES-1.7.txt CHANGES IN CUPS V1.7.3 + - Added Brazilian Portuguese translation (STR #4409) - Fixed mapping of OutputBin values such as "Tray1" () - Several ippGet* functions incorrectly returned -1 instead of 0 on @@ -12,6 +13,8 @@ CHANGES IN CUPS V1.7.3 - The IPP backend did not abort a job when the printer did not validate the supplied options () - Fixed an authentication race condition in cupsSendRequest (STR #4403) + - The scheduler did not add the "job-hold-until-specified" reason when + holding a job using the lp command (STR #4405) CHANGES IN CUPS V1.7.2 diff --git a/scheduler/job.c b/scheduler/job.c index 7da6550994..610d4e0245 100644 --- a/scheduler/job.c +++ b/scheduler/job.c @@ -2238,9 +2238,10 @@ cupsdSetJobHoldUntil(cupsd_job_t *job, /* I - Job */ cupsdMarkDirty(CUPSD_DIRTY_JOBS); } - ippSetString(job->attrs, &job->reasons, 0, "job-hold-until-specified"); } + ippSetString(job->attrs, &job->reasons, 0, "job-hold-until-specified"); + /* * Update the hold time... */