]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The scheduler did not start all pending jobs at once (STR #4646)
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 24 Jun 2015 20:01:28 +0000 (20:01 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 24 Jun 2015 20:01:28 +0000 (20:01 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12758 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES-2.0.txt
scheduler/job.c

index 73a0c7529b39f7b9e08295e0d2291e3db99740cb..55a4eb777ba9b36d361a3094fcc4c3132f0a2a31 100644 (file)
@@ -6,6 +6,7 @@ CHANGES IN CUPS V2.0.4
        - Fixed a bug in cupsRasterWritePixels (STR #4650)
        - Fixed redirection in the web interface (STR #4538)
        - The IPP backend did not respond to side-channel requests (STR #4645)
+       - The scheduler did not start all pending jobs at once (STR #4646)
 
 
 CHANGES IN CUPS V2.0.3
index 956f9ffa9fb944bc72a48c63dbc749749f0bdac9..82c5306d635be268d837226f8ab9ccfac6eaf573 100644 (file)
@@ -392,7 +392,9 @@ cupsdCheckJobs(void)
          * Start the job...
          */
 
+         cupsArraySave(ActiveJobs);
          start_job(job, printer);
+         cupsArrayRestore(ActiveJobs);
        }
       }
     }