aboutsummaryrefslogtreecommitdiffstats
path: root/src/word.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-03-16 17:13:08 +0000
committerVincent Richard <[email protected]>2005-03-16 17:13:08 +0000
commit2ca56a209f9968e4546ab3c7038a3dec03709cfa (patch)
tree215eef7c8a750988db9663de65f8b41ae0c6463d /src/word.cpp
parentSupport for In-Reply-To header field (type MessageId). (diff)
downloadvmime-2ca56a209f9968e4546ab3c7038a3dec03709cfa.tar.gz
vmime-2ca56a209f9968e4546ab3c7038a3dec03709cfa.zip
Fixed compilation problems on Solaris 9.
Diffstat (limited to 'src/word.cpp')
-rw-r--r--src/word.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/word.cpp b/src/word.cpp
index 7fde1fab..e2bdba66 100644
--- a/src/word.cpp
+++ b/src/word.cpp
@@ -67,7 +67,7 @@ word* word::parseNext(const string& buffer, const string::size_type position,
// - before the first word
// - between two encoded words
// - after the last word
- while (pos < end && parserHelpers::isspace(buffer[pos]))
+ while (pos < end && parserHelpers::isSpace(buffer[pos]))
++pos;
string::size_type startPos = pos;
@@ -84,7 +84,7 @@ word* word::parseNext(const string& buffer, const string::size_type position,
if (pos > position && buffer[pos - 1] == '\r')
--endPos;
- while (pos != end && parserHelpers::isspace(buffer[pos]))
+ while (pos != end && parserHelpers::isSpace(buffer[pos]))
++pos;
unencoded += string(buffer.begin() + startPos, buffer.begin() + endPos);