Changed the outFatal to an outError for consistancy with the other error messages

This commit is contained in:
sean 2012-06-21 01:36:22 +00:00
parent b940d201d4
commit 5a98556318

View file

@ -1494,7 +1494,7 @@ int EchoServer::start() {
loopret=nsock_loop(nsp, 1000);
//If something went wrong in nsock_loop, let's just bail out.
if (loopret == NSOCK_LOOP_ERROR) {
outFatal(QT_3, "Unexpected nsock_loop error.\n");
outError(QT_3, "Unexpected nsock_loop error.\n");
return OP_FAILURE;
}
}