summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index a47ff60e8..5086bd093 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1284,7 +1284,7 @@ void userrec::Write(const std::string &text)
if ((this->fd < 0) || (this->fd > MAX_DESCRIPTORS))
return;
- static std::string crlf = text;
+ std::string crlf = text;
crlf.append("\r\n");
if (Config->GetIOHook(this->GetPort()))