summaryrefslogtreecommitdiff
path: root/src/mode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mode.cpp')
-rw-r--r--src/mode.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mode.cpp b/src/mode.cpp
index 87876141a..69284ab5c 100644
--- a/src/mode.cpp
+++ b/src/mode.cpp
@@ -552,12 +552,13 @@ std::string compress_modes(std::string modes,bool channelmodes)
static char v[2];
v[0] = (unsigned char)j;
v[1] = '\0';
- std::string::size_type pos = modes.find(std::string(v));
+ std::string mode_str = v;
+ std::string::size_type pos = modes.find(mode_str);
if (pos != std::string::npos)
{
log(DEBUG,"all occurances of mode %c to be deleted...",(unsigned char)j);
- while (modes.find(std::string(v)) != std::string::npos)
- modes.erase(modes.find(std::string(v)),1);
+ while (modes.find(mode_str) != std::string::npos)
+ modes.erase(modes.find(mode_str),1);
log(DEBUG,"New mode line: %s",modes.c_str());
}
}