fix boolean expression (oof)

This commit is contained in:
Lion Kortlepel 2021-02-17 09:57:24 +01:00 committed by Anonymous275
parent 51dbfe0482
commit b3256062f7

View File

@ -632,7 +632,7 @@ void TTCPServer::operator()() {
info(("Vehicle event network online"));
do {
try {
if (!mShutdown) {
if (mShutdown) {
debug("shutdown during TCP wait for accept loop");
break;
}