]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Update jobs.cache after expiring job files (STR #4706)
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 31 Aug 2015 14:27:39 +0000 (14:27 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 31 Aug 2015 14:27:39 +0000 (14:27 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12856 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES.txt
INSTALL.txt
README.txt
scheduler/job.c

index a51d09d560d084bc53bbf2fb534724c5cd4349da..ab1574c1f2e17deafdd029b38659aafbe2d38b28 100644 (file)
@@ -1,4 +1,4 @@
-CHANGES.txt - 2.1.0 - 2015-08-28
+CHANGES.txt - 2.1.0 - 2015-08-31
 --------------------------------
 
 CHANGES IN CUPS V2.1.0
@@ -12,6 +12,8 @@ CHANGES IN CUPS V2.1.0
        - "make check" incorrectly reported an expectation of 18 warning
          messages when 8 were expected (STR #4684)
        - The new PDF file type rule did not work (STR #4692)
+       - The scheduler did not update the jobs.cache file when job files were
+         expired (STR #4706)
        - Fixed some configure script issues (STR #4694, STR #4695, STR #4698)
        - Documentation updates (STR #4691, STR #4693)
 
index c9c9a98e2408be3b74601d22cd481d88a411dc4e..bdc219c47d0f176d3ffd36bb986ac27a6d9bbf25 100644 (file)
@@ -1,4 +1,4 @@
-INSTALL - CUPS v2.1.0 - 2015-08-05
+INSTALL - CUPS v2.1.0 - 2015-08-31
 ----------------------------------
 
 This file describes how to compile and install CUPS from source code. For more
index f8636f06f328db1ec4b6f4e5cba9ab0f77cafd7a..901e0c3d0150ebbe11d1433f78eafbebfcbbf3b1 100644 (file)
@@ -1,4 +1,4 @@
-README - CUPS v2.1.0 - 2015-08-05
+README - CUPS v2.1.0 - 2015-08-31
 ---------------------------------
 
 Looking for compile instructions?  Read the file "INSTALL.txt" instead...
index dd6d30cafb4e630f6fa83a8c7191838ad0ee4a7d..e7c26805e55e40f699d686f94fc462bd031493df 100644 (file)
@@ -442,6 +442,8 @@ cupsdCleanJobs(void)
         cupsdLogJob(job, CUPSD_LOG_DEBUG, "Removing document files.");
         remove_job_files(job);
 
+        cupsdMarkDirty(CUPSD_DIRTY_JOBS);
+
         if (job->history_time < JobHistoryUpdate || !JobHistoryUpdate)
          JobHistoryUpdate = job->history_time;
       }