SVN commit 594191 by mueller: fix connect timeout being much too short M +1 -1 kmcupsmanager.cpp --- trunk/KDE/kdelibs/kdeprint/cups/kmcupsmanager.cpp #594190:594191 @@ -891,7 +891,7 @@ { kDebug(500) << "Checking for update possible" << endl; m_socket = new KNetwork::KBufferedSocket; - m_socket->setTimeout( 1 ); + m_socket->setTimeout( 1500 ); connect( m_socket, SIGNAL( connected(const KResolverEntry&) ), SLOT( slotConnectionSuccess() ) ); connect( m_socket, SIGNAL( gotError( int ) ), SLOT( slotConnectionFailed( int ) ) );