aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_operchans.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_operchans.cpp')
-rw-r--r--src/modules/m_operchans.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/modules/m_operchans.cpp b/src/modules/m_operchans.cpp
index f5ed14e09..c76754b75 100644
--- a/src/modules/m_operchans.cpp
+++ b/src/modules/m_operchans.cpp
@@ -35,15 +35,9 @@ enum
class OperExtBan final
: public ExtBan::MatchingBase
{
-private:
- std::string space;
- std::string underscore;
-
public:
OperExtBan(Module* Creator)
: ExtBan::MatchingBase(Creator, "oper", 'O')
- , space(" ")
- , underscore("_")
{
}
@@ -55,7 +49,7 @@ public:
// Replace spaces with underscores as they're prohibited in mode parameters.
std::string opername(user->oper->GetType());
- stdalgo::string::replace_all(opername, space, underscore);
+ std::replace(opername.begin(), opername.end(), ' ', '_');
return InspIRCd::Match(opername, text);
}
};