From 2ca56a209f9968e4546ab3c7038a3dec03709cfa Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 16 Mar 2005 17:13:08 +0000 Subject: Fixed compilation problems on Solaris 9. --- src/body.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/body.cpp') diff --git a/src/body.cpp b/src/body.cpp index 6f3b0ec6..a7c09d44 100644 --- a/src/body.cpp +++ b/src/body.cpp @@ -109,7 +109,7 @@ void body::parse(const string& buffer, const string::size_type position, // characters from a set of characters known to be very // robust through email gateways, and NOT ending with // white space..." - while (pos != start && parserHelpers::isspace(buffer[pos - 1])) + while (pos != start && parserHelpers::isSpace(buffer[pos - 1])) --pos; boundary = string(buffer.begin() + start, -- cgit v1.2.3