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/address.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/address.cpp')
-rw-r--r-- | src/address.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/address.cpp b/src/address.cpp index cf13a007..7b63125b 100644 --- a/src/address.cpp +++ b/src/address.cpp @@ -74,7 +74,7 @@ address* address::parseNext(const string& buffer, const string::size_type positi string::size_type pos = position; - while (pos < end && parserHelpers::isspace(buffer[pos])) + while (pos < end && parserHelpers::isSpace(buffer[pos])) ++pos; const string::size_type start = pos; |