Skip to content
Snippets Groups Projects
Commit dd9fdee5 authored by Yawning Angel's avatar Yawning Angel
Browse files

Add a missing "continue" statement.

Caught by asn, thanks.
parent f32f01ba
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment