diff options
author | Vincent Richard <[email protected]> | 2005-03-16 17:13:08 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-03-16 17:13:08 +0000 |
commit | 2ca56a209f9968e4546ab3c7038a3dec03709cfa (patch) | |
tree | 215eef7c8a750988db9663de65f8b41ae0c6463d /src/text.cpp | |
parent | Support for In-Reply-To header field (type MessageId). (diff) | |
download | vmime-2ca56a209f9968e4546ab3c7038a3dec03709cfa.tar.gz vmime-2ca56a209f9968e4546ab3c7038a3dec03709cfa.zip |
Fixed compilation problems on Solaris 9.
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/text.cpp b/src/text.cpp index 97a58647..613cbbad 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -265,7 +265,7 @@ text* text::newFromString(const string& in, const charset& ch, text* generateInE for ( ; ; ) { - if (p == end || parserHelpers::isspace(*p)) + if (p == end || parserHelpers::isSpace(*p)) { if (p != end) ++p; @@ -310,7 +310,7 @@ text* text::newFromString(const string& in, const charset& ch, text* generateInE is8bit = false; start = p; } - else if (!parserHelpers::isascii(*p)) + else if (!parserHelpers::isAscii(*p)) { is8bit = true; ++p; |