]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
PROPAGATE this fix
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 3 Oct 2007 18:02:45 +0000 (18:02 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 3 Oct 2007 18:02:45 +0000 (18:02 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8118 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/extra/m_ssl_gnutls.cpp
src/modules/extra/m_ssl_openssl.cpp
src/modules/m_chanprotect.cpp
src/modules/m_oper_hash.cpp
src/modules/m_sajoin.cpp
src/modules/m_samode.cpp

index 91e1fae0f2676bfaf8ac4796229be28e6e812eaf..477113543b575e8a0523d38cc47d6b3b2bb45bac 100644 (file)
@@ -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.
index f05423ca65204ee326257e8557d61a5d90de7f0e..16ae012c214e3308e14a4b9f20c2bf97de7c6ba2 100644 (file)
@@ -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.
index 8adeefb0b080be06e424edeefcda4b47401df0cd..fb545f58fdf117be00bc4aac3b6face812a72dfa 100644 (file)
@@ -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)
                {
index 887b2d6a7bc567ca3c169d4625d2abfcdf863ebe..d8acc3ef96b9e8d4cc001536d1bd706e2ad42fc4 100644 (file)
@@ -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!
                 */
index b99f6f65d6fae21bc16a2adf85f5c196610a8601..d0567cb166d1c2f9554ec8f20ca447c35f1ff0b4 100644 (file)
@@ -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)
                                {
index 0f5813edc04e44882dd8c68600e4feed28f1fcca..bb0394fb01d12ecfd815c904e6ba11d8ae5f35b2 100644 (file)
@@ -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
                         */