- Added back still useful str3425.patch. Second part of STR #3425 is still
not fixed in 1.4.3
This commit is contained in:
parent
cb60366b1d
commit
c1fd48d63a
49
cups-str3425p2.patch
Normal file
49
cups-str3425p2.patch
Normal file
@ -0,0 +1,49 @@
|
||||
diff -up cups-1.4.3/scheduler/job.c.str3425p2 cups-1.4.3/scheduler/job.c
|
||||
--- cups-1.4.3/scheduler/job.c.str3425p2 2010-06-01 17:16:46.000000000 +0200
|
||||
+++ cups-1.4.3/scheduler/job.c 2010-06-01 17:19:10.000000000 +0200
|
||||
@@ -2286,12 +2286,14 @@ cupsdSetJobState(
|
||||
if (!cupsdLoadJob(job))
|
||||
return;
|
||||
|
||||
- /*
|
||||
- * Don't do anything if the state is unchanged...
|
||||
- */
|
||||
-
|
||||
- if (newstate == (oldstate = job->state_value))
|
||||
- return;
|
||||
+ /*
|
||||
+ * Don't do anything if the state is unchanged and we aren't purging the
|
||||
+ * job...
|
||||
+ */
|
||||
+
|
||||
+ oldstate = job->state_value;
|
||||
+ if (newstate == oldstate && action != CUPSD_JOB_PURGE)
|
||||
+ return;
|
||||
|
||||
/*
|
||||
* Stop any processes that are working on the current job...
|
||||
@@ -2498,6 +2500,15 @@ cupsdSetJobState(
|
||||
job->dirty = 1;
|
||||
cupsdMarkDirty(CUPSD_DIRTY_JOBS);
|
||||
}
|
||||
+ else if (!job->printer)
|
||||
+ {
|
||||
+ /*
|
||||
+ * Delete the job immediately if not actively printing...
|
||||
+ */
|
||||
+
|
||||
+ cupsdDeleteJob(job, CUPSD_JOB_PURGE);
|
||||
+ job = NULL;
|
||||
+ }
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -2505,7 +2516,7 @@ cupsdSetJobState(
|
||||
* Finalize the job immediately if we forced things...
|
||||
*/
|
||||
|
||||
- if (action >= CUPSD_JOB_FORCE && job->printer)
|
||||
+ if (action >= CUPSD_JOB_FORCE && job && job->printer)
|
||||
finalize_job(job, 0);
|
||||
|
||||
/*
|
@ -8,7 +8,7 @@
|
||||
Summary: Common Unix Printing System
|
||||
Name: cups
|
||||
Version: 1.4.3
|
||||
Release: 6%{?dist}
|
||||
Release: 7%{?dist}
|
||||
License: GPLv2
|
||||
Group: System Environment/Daemons
|
||||
Source: http://ftp.easysw.com/pub/cups/%{version}/cups-%{version}-source.tar.bz2
|
||||
@ -59,6 +59,7 @@ Patch32: cups-str3541.patch
|
||||
Patch33: cups-snmp-quirks.patch
|
||||
Patch34: cups-hostnamelookups.patch
|
||||
Patch35: cups-texttops-rotate-page.patch
|
||||
Patch36: cups-str3425p2.patch
|
||||
|
||||
Patch100: cups-lspp.patch
|
||||
|
||||
@ -227,6 +228,7 @@ module.
|
||||
%patch33 -p1 -b .snmp-quirks
|
||||
%patch34 -p1 -b .hostnamelookups
|
||||
%patch35 -p1 -b .texttops-rotate-page
|
||||
%patch36 -p1 -b .str3425p2
|
||||
|
||||
%if %lspp
|
||||
%patch100 -p1 -b .lspp
|
||||
@ -530,6 +532,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{php_extdir}/phpcups.so
|
||||
|
||||
%changelog
|
||||
* Tue Jun 01 2010 Jiri Popelka <jpopelka@redhat.com> 1:1.4.3-7
|
||||
- Added back still useful str3425.patch.
|
||||
Second part of STR #3425 is still not fixed in 1.4.3
|
||||
|
||||
* Tue May 18 2010 Tim Waugh <twaugh@redhat.com> 1:1.4.3-6
|
||||
- Adjust texttops output to be in natural orientation (STR #3563).
|
||||
This fixes page-label orientation when texttops is used in the
|
||||
|
Loading…
Reference in New Issue
Block a user