diff options
| author | 2006-08-06 14:36:24 +0000 | |
|---|---|---|
| committer | 2006-08-06 14:36:24 +0000 | |
| commit | 7363f470f07527e29fd94fdcea77965173cf332a (patch) | |
| tree | abffa9fd6219d9c40778b1c640b421ce37af8596 /src/modules/m_spanningtree.cpp | |
| parent | Dont try and cloak remote clients (diff) | |
| download | inspircd++-7363f470f07527e29fd94fdcea77965173cf332a.tar.gz inspircd++-7363f470f07527e29fd94fdcea77965173cf332a.tar.bz2 inspircd++-7363f470f07527e29fd94fdcea77965173cf332a.zip | |
Fix TS lowering, also update local variable
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4729 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, 2 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index dad289d8e..e98b7b460 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1445,6 +1445,7 @@ class TreeSocket : public InspSocket { log(DEFAULT,"Channel TS for %s changed from %lu to %lu",us->name,ourTS,TS); us->age = TS; + ourTS = TS; } } else @@ -1485,6 +1486,7 @@ class TreeSocket : public InspSocket { log(DEFAULT,"Channel TS for %s changed from %lu to %lu",us->name,ourTS,TS); us->age = TS; + ourTS = TS; } } else |
