X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcoremods%2Fcore_channel%2Fcmode_k.cpp;h=5f592869a565e347f04917e608bddacc1f1d0005;hb=d0bb6bd79a7909b498ad018b4a9f6f90d4e89787;hp=5563c007237bed198273d69d41ab1df957fbd00c;hpb=aa692dc1039b63deef7886e914ec499abe7facaf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/coremods/core_channel/cmode_k.cpp b/src/coremods/core_channel/cmode_k.cpp index 5563c0072..5f592869a 100644 --- a/src/coremods/core_channel/cmode_k.cpp +++ b/src/coremods/core_channel/cmode_k.cpp @@ -1,7 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2017-2019 Sadie Powell + * Copyright (C) 2017-2020 Sadie Powell * Copyright (C) 2013-2015 Attila Molnar * Copyright (C) 2012 Robby * Copyright (C) 2009 Uli Schlachter @@ -45,7 +45,8 @@ ModeAction ModeChannelKey::OnModeChange(User* source, User*, Channel* channel, s return MODEACTION_DENY; if (exists && (parameter != *key)) { - /* Key is currently set and the correct key wasnt given */ + /* Key is currently set and the correct key wasn't given */ + source->WriteNumeric(ERR_KEYSET, channel->name, "Channel key already set"); return MODEACTION_DENY; } } else {