aboutsummaryrefslogtreecommitdiffstats
path: root/src/messaging/urlUtils.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/messaging/urlUtils.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/messaging/urlUtils.cpp')
-rw-r--r--src/messaging/urlUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messaging/urlUtils.cpp b/src/messaging/urlUtils.cpp
index d3eefc3d..04603115 100644
--- a/src/messaging/urlUtils.cpp
+++ b/src/messaging/urlUtils.cpp
@@ -34,7 +34,7 @@ const string urlUtils::encode(const string& s)
{
const char_t c = *it;
- if (parserHelpers::isprint(c) && c != '%')
+ if (parserHelpers::isPrint(c) && c != '%')
{
result += c;
}