summaryrefslogtreecommitdiff
path: root/src/channels.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/channels.cpp')
-rw-r--r--src/channels.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 7629c8bb6..b44a863b4 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -188,7 +188,7 @@ void chanrec::SetDefaultModes()
if (mode->GetNumParams(true))
parameter = list.GetToken().c_str();
else
- parameter = "";
+ parameter.clear();
mode->OnModeChange(dummyuser, dummyuser, this, parameter, true);
}
@@ -790,7 +790,7 @@ char* chanrec::ChanModes(bool showkey)
if(this->modes[n])
{
*offset++ = n + 65;
- extparam = "";
+ extparam.clear();
switch (n)
{
case CM_KEY:
@@ -811,7 +811,7 @@ char* chanrec::ChanModes(bool showkey)
extparam = this->GetModeParameter(n + 65);
break;
}
- if (extparam != "")
+ if (!extparam.empty())
{
charlcat(sparam,' ',MAXBUF);
strlcat(sparam,extparam.c_str(),MAXBUF);