aboutsummaryrefslogtreecommitdiff
path: root/src/server.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2025-02-27 16:09:57 +0000
committerGravatar Sadie Powell2025-02-27 16:09:57 +0000
commit73ac91e4ede1fffa0f91c4b19124fb4a91143e69 (patch)
tree0dd12e88ade493bcca202df0399eb27a77133b99 /src/server.cpp
parentAdd the user IP address to the chancreate message. (diff)
Fix logging about SIGHUP to the wrong snotice character.
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 8328e4d87..e35a666aa 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -35,7 +35,7 @@ void InspIRCd::HandleSignal(sig_atomic_t signal)
#ifndef _WIN32
case SIGHUP:
- ServerInstance->SNO.WriteGlobalSno('a', "Rehashing due to SIGHUP");
+ ServerInstance->SNO.WriteGlobalSno('r', "Rehashing due to SIGHUP");
Rehash();
break;
#endif