From cf34e4dbe85e70f6df5d47036a3991671d22377d Mon Sep 17 00:00:00 2001 From: Matt Ullman Date: Tue, 13 Oct 2015 11:49:26 -0400 Subject: [PATCH] Fix error message in delayjoin --- src/modules/chanmodes/delayjoin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/chanmodes/delayjoin.c b/src/modules/chanmodes/delayjoin.c index 10f3ae6a6..c78159e84 100644 --- a/src/modules/chanmodes/delayjoin.c +++ b/src/modules/chanmodes/delayjoin.c @@ -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; }