From kde-commits Fri May 22 19:07:16 2009 From: Andreas Hartmetz Date: Fri, 22 May 2009 19:07:16 +0000 To: kde-commits Subject: branches/KDE/4.2/kdelibs/kio/kio Message-Id: <1243019236.977124.13986.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=124301924720622 SVN commit 971572 by ahartmetz: backport the bugfix part from 952940 in trunk: store a rule to ignore all ignored errors, not only the newly ignored errors. the old incomplete rule would be replaced with a new incomplete rule and this would happen every time the respective site was visited... M +1 -1 tcpslavebase.cpp --- branches/KDE/4.2/kdelibs/kio/kio/tcpslavebase.cpp #971571:971572 @@ -821,7 +821,7 @@ //rule = KSslCertificateRule(d->socket.peerCertificateChain().first(), whatever); rule.setExpiryDateTime(ruleExpiry); - rule.setIgnoredErrors(remainingErrors); + rule.setIgnoredErrors(d->sslErrors); cm->setRule(rule); return ResultOk | ResultOverridden;