summaryrefslogtreecommitdiff
path: root/extra/kdelibs
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-07-11 18:35:04 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-07-11 18:35:04 +0000
commit1a1b748f1738b1989a834d75b1623be21bf9bab5 (patch)
treed99e645120dc197bc3bcbcd96b1bb89e4e68bf4f /extra/kdelibs
parent139460a7a8b085588b699c488fd19b166db18a74 (diff)
Mon Jul 11 18:34:51 UTC 2011
Diffstat (limited to 'extra/kdelibs')
-rw-r--r--extra/kdelibs/fix-double-POST-action.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/extra/kdelibs/fix-double-POST-action.patch b/extra/kdelibs/fix-double-POST-action.patch
deleted file mode 100644
index 2672d65db..000000000
--- a/extra/kdelibs/fix-double-POST-action.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-commit 92db24adfa941003db1d885df01157056617f30b
-Author: Maks Orlovich <maksim@kde.org>
-Date: Sun May 8 14:39:03 2011 -0400
-
- Fix the job-on-hold reuse logic, which caused the double-POST problem)
-
- adawit, could you please at least READ what you're backporting if you are
- going to be this aggressive? Or better yet, please don't backport anything
- that's not fixing a critical bug or is trivial, as per:
- http://techbase.kde.org/Policies/Minor_Point_Release_Policy
-
- CCMAIL: adawit@kde.org
- BUG: 272466
-
-diff --git a/kio/kio/scheduler.cpp b/kio/kio/scheduler.cpp
-index 55da053..9f5607e 100644
---- a/kio/kio/scheduler.cpp
-+++ b/kio/kio/scheduler.cpp
-@@ -1151,7 +1151,7 @@ Slave *SchedulerPrivate::heldSlaveForJob(SimpleJob *job)
- bool canJobReuse = (cmd == CMD_GET || cmd == CMD_MULTI_GET);
-
- if (KIO::TransferJob *tJob = qobject_cast<KIO::TransferJob *>(job)) {
-- canJobReuse = cmd == (canJobReuse || cmd == CMD_SPECIAL);
-+ canJobReuse = (canJobReuse || cmd == CMD_SPECIAL);
- if (canJobReuse) {
- KIO::MetaData outgoing = tJob->outgoingMetaData();
- const QString resume = outgoing.value("resume");