summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/users.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users.cpp b/src/users.cpp
index ef2a58fd5..eff8d9efc 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -400,8 +400,8 @@ bool userrec::AddBuffer(const std::string &a)
for (std::string::const_iterator i = a.begin(); i != a.end(); i++)
{
- if ((*i != '\r') && (*i != '\0') && (*i != 7))
- b = b + *i;
+ if (*i != '\r')
+ b += *i;
}
recvq.append(b);