1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 05:43:12 +02:00

Merge pull request #37 from blindsighttf2/typo

Fix error message in delayjoin
This commit is contained in:
Travis McArthur
2015-10-13 22:58:10 -07:00
+1 -1
View File
@@ -63,7 +63,7 @@ MOD_INIT(delayjoin)
/* I use config_error() here because it's printed to stderr in case of a load
* on cmd line, and to all opers in case of a /rehash.
*/
config_error("delayjoin: Could not add usermode '+D' or '+d': %s", ModuleGetErrorStr(modinfo->handle));
config_error("delayjoin: Could not add channel mode '+D' or '+d': %s", ModuleGetErrorStr(modinfo->handle));
return MOD_FAILED;
}