diff options
| author | 2006-06-05 20:15:24 +0000 | |
|---|---|---|
| committer | 2006-06-05 20:15:24 +0000 | |
| commit | a66ec8e863d922c26c76f5a03f4c342f5ed65fe6 (patch) | |
| tree | 13d6e9019ebbbee95b4a57ab5a37fcda34421e84 /src/modules/m_spanningtree.cpp | |
| parent | Fix for an/a and vowel detection in "is an ircop" numeric, noticed by Smartys (diff) | |
Collision safety just in case the clocks are out
git-svn-id: http://svn.inspircd.org/repository/branches/1_0_stable@3990 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
| -rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index ea2f45dab..cede76260 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -2591,7 +2591,7 @@ class TreeSocket : public InspSocket * and our copy. */ userrec* x = Srv->FindNick(params[0]); - if (x) + if ((x) && (x != who)) { std::deque<std::string> p; p.push_back(params[0]); |
