diff options
author | Robin Burchell <viroteck@viroteck.net> | 2012-05-27 06:07:55 -0700 |
---|---|---|
committer | Robin Burchell <viroteck@viroteck.net> | 2012-05-27 06:07:55 -0700 |
commit | 5d172e0dfc4f316e21b55bf5349c90fd74ba2c3b (patch) | |
tree | 13c8ed61e3834b9b7e7b343f75e8a3ac6051e574 /src/modules/m_spanningtree | |
parent | 7d05c78517a4b6a4e98cd11e42fc9095bbca6689 (diff) | |
parent | a0d37b0551bce0f1023b477c6518d209076e3844 (diff) |
Merge pull request #145 from SaberUK/insp20-typo-fixes
[2.0] Typo fixes.
Diffstat (limited to 'src/modules/m_spanningtree')
-rw-r--r-- | src/modules/m_spanningtree/fjoin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp index f6adc7620..50775be1d 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -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) |