Do not print bind failure warnings during port availability scan

This resolves Bug 1988
pull/1/head
Timothy Pearson 10 years ago
parent 6ed1cdba96
commit fa1a997a1f

@ -64,7 +64,7 @@ bool PortListener::acquirePort() {
}
m_port = m_portBase;
m_socket = new TDEServerSocket(m_port, false);
while (!m_socket->bindAndListen()) {
while (!m_socket->bindAndListen(true)) {
m_port++;
if (m_port >= (m_portBase+m_autoPortRange)) {
kdDebug() << "Kinetd cannot load service "<<m_serviceName

Loading…
Cancel
Save