From 386fefeb0fcc559d6fd5134f7f881fddd34056d3 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Fri, 24 Nov 2006 13:22:28 +0000 Subject: Check for space/tab instead of using isspace(). --- src/net/pop3/POP3Store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/pop3/POP3Store.cpp b/src/net/pop3/POP3Store.cpp index 10a67c4a..b27c4295 100644 --- a/src/net/pop3/POP3Store.cpp +++ b/src/net/pop3/POP3Store.cpp @@ -378,7 +378,7 @@ void POP3Store::authenticateSASL() (x[1] == 'A' || x[1] == 'a') && (x[2] == 'S' || x[2] == 's') && (x[3] == 'L' || x[3] == 'l') && - std::isspace(x[4])) + (x[4] == ' ' || x[4] == '\t')) { const string list(x.begin() + 5, x.end()); -- cgit v1.2.3