From 83e1d850b555c8470963faf4be00108862b6fdb2 Mon Sep 17 00:00:00 2001 From: George Staikos Date: Thu, 31 May 2001 16:25:47 +0000 Subject: [PATCH] Reverting that commit from the SSL fix. It works without this anyways and I tested downloading multiple times without problems. I don't know if this is the problem reported just now on kmail@ or not, but please tell me if it does fix it. svn path=/trunk/kdenetwork/kmail/; revision=99656 --- kmacctexppop.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/kmacctexppop.cpp b/kmacctexppop.cpp index fe8a4418c..9a5505f48 100644 --- a/kmacctexppop.cpp +++ b/kmacctexppop.cpp @@ -564,9 +564,9 @@ void KMAcctExpPop::startJob() { else if (mAuth != "AUTO") mSlaveConfig.insert("auth", mAuth); slave = KIO::Scheduler::getConnectedSlave( url.url(), mSlaveConfig ); // This can't go here. It has to go in slotSlaveConnected() -// url.setPath(QString("/index")); -// job = KIO::get( url.url(), false, false ); -// connectJob(); + url.setPath(QString("/index")); + job = KIO::get( url.url(), false, false ); + connectJob(); } void KMAcctExpPop::slotJobFinished() { @@ -819,9 +819,11 @@ void KMAcctExpPop::slotSlaveError(KIO::Slave *aSlave, int error, void KMAcctExpPop::slotSlaveConnected(KIO::Slave *aSlave) { +#if 0 if (aSlave != slave) return; KURL url = getUrl(); url.setPath(QString("/index")); job = KIO::get( url.url(), false, false ); connectJob(); +#endif }