Browse Source

Failure to accept in connector should be a fatal error

master
Con Kolivas 11 years ago
parent
commit
b85946cc31
  1. 4
      src/connector.c

4
src/connector.c

@ -450,8 +450,8 @@ retry:
if (interrupted())
goto retry;
LOGERR("Failed to accept on connector socket, retrying in 5s");
sleep(5);
goto retry;
ret = 1;
goto out;
}
buf = recv_unix_msg(sockd);

Loading…
Cancel
Save