diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 22:01:55 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-08 22:01:55 +0000 |
commit | d91d734257619e26918b4da8153af42cd4f316de (patch) | |
tree | a3de50affb1b67536fa1d1bc82955641c61d2af6 /src | |
parent | be9fbe56f96dddb09af5b256f4529f1d8d563743 (diff) |
Oops, goofed up
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4804 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-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())) |