mirror of
https://github.com/anope/anope.git
synced 2026-06-30 15:26:38 +02:00
Fix various spelling issues (#274).
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>.
This commit is contained in:
@@ -117,7 +117,7 @@ macro(build_subdir)
|
||||
|
||||
# Append this source file's linker flags to the subdirectoy's linker flags, if there are any to append
|
||||
if(TEMP_DEPENDENCIES)
|
||||
append_to_list(SUBDIR_EXTRA_DEPENDS ${TEMP_DEPDENCIES})
|
||||
append_to_list(SUBDIR_EXTRA_DEPENDS ${TEMP_DEPENDENCIES})
|
||||
endif(TEMP_DEPENDENCIES)
|
||||
endif(HAS_FUNCTION)
|
||||
endforeach(SRC ${MODULES_SUBDIR_SRCS})
|
||||
|
||||
@@ -1335,7 +1335,7 @@ class BSKick : public Module
|
||||
Anope::string nbuf = Anope::NormalizeBuffer(realbuf);
|
||||
bool casesensitive = Config->GetModule("botserv")->Get<bool>("casesensitive");
|
||||
|
||||
/* Normalize can return an empty string if this only conains control codes etc */
|
||||
/* Normalize can return an empty string if this only contains control codes etc */
|
||||
if (badwords && !nbuf.empty())
|
||||
for (unsigned i = 0; i < badwords->GetBadWordCount(); ++i)
|
||||
{
|
||||
|
||||
@@ -55,7 +55,7 @@ struct NSCertListImpl : NSCertList
|
||||
|
||||
/** Get an entry from the nick's cert list by index
|
||||
*
|
||||
* @param entry Index in the certificaate list vector to retrieve
|
||||
* @param entry Index in the certificate list vector to retrieve
|
||||
* @return The fingerprint entry of the given index if within bounds, an empty string if the vector is empty or the index is out of bounds
|
||||
*
|
||||
* Retrieves an entry from the certificate list corresponding to the given index.
|
||||
|
||||
@@ -282,7 +282,7 @@ class CommandNSUngroup : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("This command ungroups your nick, or if given, the specificed nick,\n"
|
||||
source.Reply(_("This command ungroups your nick, or if given, the specified nick,\n"
|
||||
"from the group it is in. The ungrouped nick keeps its registration\n"
|
||||
"time, password, email, greet, language, and url. Everything else\n"
|
||||
"is reset. You may not ungroup yourself if there is only one nick in\n"
|
||||
|
||||
@@ -340,7 +340,7 @@ static dbFILE *open_db_read(const char *service, const char *filename, int versi
|
||||
}
|
||||
else if (myversion < version)
|
||||
{
|
||||
Log() << "Unsuported database version (" << myversion << ") on " << f->filename << ".";
|
||||
Log() << "Unsupported database version (" << myversion << ") on " << f->filename << ".";
|
||||
delete f;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -288,8 +288,8 @@ class ESHA256 : public Module
|
||||
else
|
||||
use_iv = false;
|
||||
|
||||
Encryption::IV initilization(this->iv, 8);
|
||||
SHA256Context ctx(&initilization);
|
||||
Encryption::IV initialization(this->iv, 8);
|
||||
SHA256Context ctx(&initialization);
|
||||
ctx.Update(reinterpret_cast<const unsigned char *>(src.c_str()), src.length());
|
||||
ctx.Finalize();
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ using namespace SQL;
|
||||
*
|
||||
* This module spawns a single thread that is used to execute blocking MySQL queries.
|
||||
* When a module requests a query to be executed it is added to a list for the thread
|
||||
* (which never stops looping and sleeing) to pick up and execute, the result of which
|
||||
* (which never stops looping and sleeping) to pick up and execute, the result of which
|
||||
* is inserted in to another queue to be picked up by the main thread. The main thread
|
||||
* uses Pipe to become notified through the socket engine when there are results waiting
|
||||
* to be sent back to the modules requesting the query
|
||||
|
||||
@@ -115,7 +115,7 @@ class PlexusProto : public IRCDProto
|
||||
* KNOCK - Supports KNOCK
|
||||
* TBURST - Supports TBURST
|
||||
* PARA - Supports invite broadcasting for +p
|
||||
* ENCAP - Supports encapsulization of protocol messages
|
||||
* ENCAP - Supports encapsulation of protocol messages
|
||||
* SVS - Supports services protocol extensions
|
||||
*/
|
||||
UplinkSocket::Message() << "CAPAB :QS EX CHW IE EOB KLN UNKLN GLN HUB KNOCK TBURST PARA ENCAP SVS";
|
||||
|
||||
@@ -119,7 +119,7 @@ class BotServCore : public Module
|
||||
if (inhabit && inhabit->HasExt(c))
|
||||
return;
|
||||
|
||||
/* This is called prior to removing the user from the channnel, so c->users.size() - 1 should be safe */
|
||||
/* This is called prior to removing the user from the channel, so c->users.size() - 1 should be safe */
|
||||
if (c->ci && c->ci->bi && u != *c->ci->bi && c->users.size() - 1 <= Config->GetModule(this)->Get<unsigned>("minusers") && c->FindUser(c->ci->bi))
|
||||
c->ci->bi->Part(c->ci->c);
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
{END IF}
|
||||
{IF EXISTS SUCCESSOR}
|
||||
<tr>
|
||||
<td>Succsesor</td>
|
||||
<td>Successor</td>
|
||||
<td>{SUCCESSOR}</td>
|
||||
</tr>
|
||||
{END IF}
|
||||
|
||||
Reference in New Issue
Block a user