X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsnomasks.cpp;h=28533e4bd1ce7883f6a91783efb9df398e759127;hb=b0f16081ccaef527ed4b5434a7264508cf455f39;hp=6f7f666f6763b0ceaadbc6445e82a38234dc5674;hpb=aa692dc1039b63deef7886e914ec499abe7facaf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/snomasks.cpp b/src/snomasks.cpp index 6f7f666f6..28533e4bd 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -138,7 +138,7 @@ void Snomask::Send(char letter, const std::string& desc, const std::string& msg) for (UserManager::OperList::const_iterator i = opers.begin(); i != opers.end(); ++i) { User* user = *i; - // IsNoticeMaskSet() returns false for opers who aren't +s, no need to check for it seperately + // IsNoticeMaskSet() returns false for opers who aren't +s, no need to check for it separately if (IS_LOCAL(user) && user->IsNoticeMaskSet(letter)) user->WriteNotice(finalmsg); }