]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The scheduler did not add the "job-hold-until-specified" reason when holding a
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Fri, 9 May 2014 20:45:53 +0000 (20:45 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Fri, 9 May 2014 20:45:53 +0000 (20:45 +0000)
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

CHANGES-1.7.txt
scheduler/job.c

index d1880c3ab33f9afbb297348228ac73c24cae8e3f..8a5605947125b54e1586661360c6f962340cd86a 100644 (file)
@@ -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"
          (<rdar://problem/16685606>)
        - 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 (<rdar://problem/16836752>)
        - 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
index 7da65509946f393213e038c69eaa35e437835642..610d4e0245ed82fa519589fbad4f741e611d654f 100644 (file)
@@ -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...
   */