summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/GeneralConfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/GeneralConfig.cpp')
-rw-r--r--cpp/src/IceSSL/GeneralConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/GeneralConfig.cpp b/cpp/src/IceSSL/GeneralConfig.cpp
index c61a9bef104..7a5e7ae6d58 100644
--- a/cpp/src/IceSSL/GeneralConfig.cpp
+++ b/cpp/src/IceSSL/GeneralConfig.cpp
@@ -128,7 +128,7 @@ IceSSL::GeneralConfig::parseVerifyMode(string& value)
const string delim = " |\t\n\r";
string s(value);
- transform(s.begin(), s.end(), s.begin(), tolower);
+ transform(s.begin(), s.end(), s.begin(), ::tolower);
string::size_type beg;
string::size_type end = 0;