Add a missing "continue" statement.

Caught by asn, thanks.
merge-requests/3/head
Yawning Angel 10 years ago
parent f32f01ba01
commit dd9fdee55d

@ -234,6 +234,7 @@ func serverSetup() (launched bool, listeners []net.Listener) {
ln, err := net.ListenTCP("tcp", bindaddr.Addr)
if err != nil {
pt.SmethodError(name, err.Error())
continue
}
go serverAcceptLoop(f, ln, &ptServerInfo)

Loading…
Cancel
Save