summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-03 18:02:45 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-03 18:02:45 +0000
commitc51f8c8fe906ca0eb8f2d45d8c592f397d6729d9 (patch)
treecdbd063530843cf2e78bcefac4e5c66e25a2db5f
parent602e8f0836621c8670a274ffa59948c4ebc46368 (diff)
PROPAGATE this fix
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8118 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/extra/m_ssl_gnutls.cpp2
-rw-r--r--src/modules/extra/m_ssl_openssl.cpp2
-rw-r--r--src/modules/m_chanprotect.cpp4
-rw-r--r--src/modules/m_oper_hash.cpp2
-rw-r--r--src/modules/m_sajoin.cpp4
-rw-r--r--src/modules/m_samode.cpp2
6 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/extra/m_ssl_gnutls.cpp b/src/modules/extra/m_ssl_gnutls.cpp
index 91e1fae0f..477113543 100644
--- a/src/modules/extra/m_ssl_gnutls.cpp
+++ b/src/modules/extra/m_ssl_gnutls.cpp
@@ -654,7 +654,7 @@ class ModuleSSLGnuTLS : public Module
virtual void OnPostConnect(userrec* user)
{
// This occurs AFTER OnUserConnect so we can be sure the
- // protocol module has propogated the NICK message.
+ // protocol module has propagated the NICK message.
if ((user->GetExt("ssl", dummy)) && (IS_LOCAL(user)))
{
// Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
diff --git a/src/modules/extra/m_ssl_openssl.cpp b/src/modules/extra/m_ssl_openssl.cpp
index f05423ca6..16ae012c2 100644
--- a/src/modules/extra/m_ssl_openssl.cpp
+++ b/src/modules/extra/m_ssl_openssl.cpp
@@ -765,7 +765,7 @@ class ModuleSSLOpenSSL : public Module
virtual void OnPostConnect(userrec* user)
{
// This occurs AFTER OnUserConnect so we can be sure the
- // protocol module has propogated the NICK message.
+ // protocol module has propagated the NICK message.
if ((user->GetExt("ssl", dummy)) && (IS_LOCAL(user)))
{
// Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp
index 8adeefb0b..fb545f58f 100644
--- a/src/modules/m_chanprotect.cpp
+++ b/src/modules/m_chanprotect.cpp
@@ -490,8 +490,8 @@ class ModuleChanProtect : public Module
virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque)
{
- /* NOTE: If +qa prefix is on, this is propogated by the channel join,
- * so we dont need to propogate it manually
+ /* NOTE: If +qa prefix is on, this is propagated by the channel join,
+ * so we dont need to propagate it manually
*/
if (!QAPrefixes)
{
diff --git a/src/modules/m_oper_hash.cpp b/src/modules/m_oper_hash.cpp
index 887b2d6a7..d8acc3ef9 100644
--- a/src/modules/m_oper_hash.cpp
+++ b/src/modules/m_oper_hash.cpp
@@ -55,7 +55,7 @@ class cmd_mkpasswd : public command_t
CmdResult Handle (const char** parameters, int pcnt, userrec *user)
{
MakeHash(user, parameters[0], parameters[1]);
- /* NOTE: Don't propogate this across the network!
+ /* NOTE: Don't propagate this across the network!
* We dont want plaintext passes going all over the place...
* To make sure it goes nowhere, return CMD_FAILURE!
*/
diff --git a/src/modules/m_sajoin.cpp b/src/modules/m_sajoin.cpp
index b99f6f65d..d0567cb16 100644
--- a/src/modules/m_sajoin.cpp
+++ b/src/modules/m_sajoin.cpp
@@ -45,13 +45,13 @@ class cmd_sajoin : public command_t
}
/* For local users, we send the JoinUser which may create a channel and set its TS.
- * For non-local users, we just return CMD_SUCCESS, knowing this will propogate it where it needs to be
+ * For non-local users, we just return CMD_SUCCESS, knowing this will propagate it where it needs to be
* and then that server will generate the users JOIN or FJOIN instead.
*/
if (IS_LOCAL(dest))
{
chanrec::JoinUser(ServerInstance, dest, parameters[1], true, "", ServerInstance->Time(true));
- /* Fix for dotslasher and w00t - if the join didnt succeed, return CMD_FAILURE so that it doesnt propogate */
+ /* Fix for dotslasher and w00t - if the join didnt succeed, return CMD_FAILURE so that it doesnt propagate */
chanrec* n = ServerInstance->FindChan(parameters[1]);
if (n)
{
diff --git a/src/modules/m_samode.cpp b/src/modules/m_samode.cpp
index 0f5813edc..bb0394fb0 100644
--- a/src/modules/m_samode.cpp
+++ b/src/modules/m_samode.cpp
@@ -51,7 +51,7 @@ class cmd_samode : public command_t
Event rmode2((char *)&n, NULL, "send_opers");
rmode2.Send(ServerInstance);
- /* XXX: Yes, this is right. We dont want to propogate the
+ /* XXX: Yes, this is right. We dont want to propagate the
* actual SAMODE command, just the MODE command generated
* by the send_mode
*/