Fix logging about SIGHUP to the wrong snotice character.

This commit is contained in:
Sadie Powell 2025-02-27 16:09:57 +00:00
parent 0d11ccf609
commit 73ac91e4ed

View File

@ -35,7 +35,7 @@ void InspIRCd::HandleSignal(sig_atomic_t signal)
#ifndef _WIN32 #ifndef _WIN32
case SIGHUP: case SIGHUP:
ServerInstance->SNO.WriteGlobalSno('a', "Rehashing due to SIGHUP"); ServerInstance->SNO.WriteGlobalSno('r', "Rehashing due to SIGHUP");
Rehash(); Rehash();
break; break;
#endif #endif