aboutsummaryrefslogtreecommitdiffstats
path: root/src/client/ClientRead.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/ClientRead.cxx')
-rw-r--r--src/client/ClientRead.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/client/ClientRead.cxx b/src/client/ClientRead.cxx
index ae8eda8bb..9cfb1271f 100644
--- a/src/client/ClientRead.cxx
+++ b/src/client/ClientRead.cxx
@@ -22,7 +22,7 @@
#include "Partition.hxx"
#include "Instance.hxx"
#include "event/Loop.hxx"
-#include "util/CharUtil.hxx"
+#include "util/StringUtil.hxx"
#include <string.h>
@@ -39,11 +39,10 @@ Client::OnSocketInput(void *data, size_t length)
BufferedSocket::ConsumeInput(newline + 1 - p);
/* skip whitespace at the end of the line */
- while (newline > p && IsWhitespaceFast(newline[-1]))
- --newline;
+ char *end = StripRight(p, newline);
/* terminate the string at the end of the line */
- *newline = 0;
+ *end = 0;
CommandResult result = client_process_line(*this, p);
switch (result) {