diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-03 18:02:45 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-03 18:02:45 +0000 |
commit | c51f8c8fe906ca0eb8f2d45d8c592f397d6729d9 (patch) | |
tree | cdbd063530843cf2e78bcefac4e5c66e25a2db5f /src/modules/m_sajoin.cpp | |
parent | 602e8f0836621c8670a274ffa59948c4ebc46368 (diff) |
PROPAGATE this fix
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8118 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sajoin.cpp')
-rw-r--r-- | src/modules/m_sajoin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |