mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Merge pull request #145 from SaberUK/insp20-typo-fixes
[2.0] Typo fixes.
This commit is contained in:
commit
5d172e0dfc
@ -48,7 +48,7 @@ CmdResult CommandServer::Handle (const std::vector<std::string>&, User *user)
|
||||
}
|
||||
else
|
||||
{
|
||||
user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have seperate ports from clients, change your config)",name.c_str());
|
||||
user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have separate ports from clients, change your config)",name.c_str());
|
||||
}
|
||||
return CMD_FAILURE;
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ class ModuleDelayJoin : public Module
|
||||
ModResult OnRawMode(User* user, Channel* channel, const char mode, const std::string ¶m, bool adding, int pcnt);
|
||||
};
|
||||
|
||||
/* $ModDesc: Allows for delay-join channels (+D) where users dont appear to join until they speak */
|
||||
/* $ModDesc: Allows for delay-join channels (+D) where users don't appear to join until they speak */
|
||||
|
||||
ModeAction DelayJoinMode::OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding)
|
||||
{
|
||||
@ -88,7 +88,7 @@ ModuleDelayJoin::~ModuleDelayJoin()
|
||||
|
||||
Version ModuleDelayJoin::GetVersion()
|
||||
{
|
||||
return Version("Allows for delay-join channels (+D) where users dont appear to join until they speak", VF_VENDOR);
|
||||
return Version("Allows for delay-join channels (+D) where users don't appear to join until they speak", VF_VENDOR);
|
||||
}
|
||||
|
||||
void ModuleDelayJoin::OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
|
||||
|
@ -80,14 +80,14 @@ CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *src
|
||||
if (created)
|
||||
{
|
||||
chan = new Channel(channel, TS);
|
||||
ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN recieved for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS);
|
||||
ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN received for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS);
|
||||
}
|
||||
else
|
||||
{
|
||||
time_t ourTS = chan->age;
|
||||
|
||||
if (TS != ourTS)
|
||||
ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu",
|
||||
ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN received for %s, ourTS: %lu, TS: %lu, difference: %lu",
|
||||
chan->name.c_str(), (unsigned long)ourTS, (unsigned long)TS, (unsigned long)(ourTS - TS));
|
||||
/* If our TS is less than theirs, we dont accept their modes */
|
||||
if (ourTS < TS)
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "sql.h"
|
||||
#include "hash.h"
|
||||
|
||||
/* $ModDesc: Allow/Deny connections based upon an arbitary SQL table */
|
||||
/* $ModDesc: Allow/Deny connections based upon an arbitrary SQL table */
|
||||
|
||||
enum AuthState {
|
||||
AUTH_STATE_NONE = 0,
|
||||
@ -162,7 +162,7 @@ class ModuleSQLAuth : public Module
|
||||
|
||||
Version GetVersion()
|
||||
{
|
||||
return Version("Allow/Deny connections based upon an arbitary SQL table", VF_VENDOR);
|
||||
return Version("Allow/Deny connections based upon an arbitrary SQL table", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
#include "inspircd.h"
|
||||
|
||||
/* $ModDesc: Provides the SWHOIS command which allows setting of arbitary WHOIS lines */
|
||||
/* $ModDesc: Provides the SWHOIS command which allows setting of arbitrary WHOIS lines */
|
||||
|
||||
/** Handle /SWHOIS
|
||||
*/
|
||||
@ -133,7 +133,7 @@ class ModuleSWhois : public Module
|
||||
|
||||
Version GetVersion()
|
||||
{
|
||||
return Version("Provides the SWHOIS command which allows setting of arbitary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
|
||||
return Version("Provides the SWHOIS command which allows setting of arbitrary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -246,7 +246,7 @@ class ModuleXLineDB : public Module
|
||||
|
||||
virtual Version GetVersion()
|
||||
{
|
||||
return Version("Keeps a dynamic log of all XLines created, and stores them in a seperate conf file (xline.db).", VF_VENDOR);
|
||||
return Version("Keeps a dynamic log of all XLines created, and stores them in a separate conf file (xline.db).", VF_VENDOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user