diff options
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 2 |
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())) |