diff options
Diffstat (limited to '')
-rw-r--r-- | src/messaging/urlUtils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/messaging/urlUtils.cpp b/src/messaging/urlUtils.cpp index 51db470d..d3eefc3d 100644 --- a/src/messaging/urlUtils.cpp +++ b/src/messaging/urlUtils.cpp @@ -18,6 +18,7 @@ // #include "vmime/messaging/urlUtils.hpp" +#include "vmime/parserHelpers.hpp" namespace vmime { @@ -33,7 +34,7 @@ const string urlUtils::encode(const string& s) { const char_t c = *it; - if (isprint(c) && c != '%') + if (parserHelpers::isprint(c) && c != '%') { result += c; } |