diff options
| author | 2013-09-18 10:27:06 +0200 | |
|---|---|---|
| committer | 2013-11-21 22:07:30 +0100 | |
| commit | b7d84270bce15507775c7ec216dc1d5ad8b02a53 (patch) | |
| tree | 793ac2c5ca6b3aebacf2129978660393ec00d5b6 /src/modules/m_spanningtree/capab.cpp | |
| parent | Allow multiple allowmasks in link blocks, #679 (diff) | |
Fix a few issues
- Rehash notices
- Modes in CAPAB
- GetTargetAndAction() not being static in m_callerid
- Loading custom configuration files using --config. (@SaberUK)
- ServerConfig::Read not using std::endl. (@SaberUK)
- Out of date comments in opers.conf.example, issue #624
Diffstat (limited to 'src/modules/m_spanningtree/capab.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/capab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/capab.cpp b/src/modules/m_spanningtree/capab.cpp index 7afcc50e5..52404aa1d 100644 --- a/src/modules/m_spanningtree/capab.cpp +++ b/src/modules/m_spanningtree/capab.cpp @@ -64,8 +64,8 @@ static std::string BuildModeList(ModeType type) { if (pm->GetPrefix()) mdesc.push_back(pm->GetPrefix()); - mdesc.push_back(mh->GetModeChar()); } + mdesc.push_back(mh->GetModeChar()); modes.push_back(mdesc); } } |
