diff options
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 966fcca18..a42063cfe 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -2271,7 +2271,7 @@ class TreeSocket : public InspSocket } else if (command == "BURST") { - if (params.count()) + if (params.size()) { /* If a time stamp is provided, try and check syncronization */ time_t THEM = atoi(params[0].c_str()); |