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/messaging/urlUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/messaging/urlUtils.cpp') 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; } -- cgit v1.2.3