diff options
-rw-r--r-- | src/hashcomp.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 0908e41b5..e00494041 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -217,6 +217,11 @@ const std::string irc::tokenstream::GetToken() while (n != tokens.end()) { + /** Skip multi space, converting " " into " " + */ + while ((n+1 != tokens.end()) && (*n == ' ') && (*(n+1) == ' ')) + n++; + if ((last_pushed) && (*n == ':')) { /* If we find a token thats not the first and starts with :, |