summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL
diff options
context:
space:
mode:
authornewhook <matthew.newhook@gmail.com>2015-04-22 16:17:04 -0230
committernewhook <matthew.newhook@gmail.com>2015-04-22 16:17:04 -0230
commite95d34aa245abb5c7dba23a2da0d17c90e90f706 (patch)
tree8e56352ab7b319f883e633622a6802d4a3e23eec /cpp/src/IceSSL
parentICE-6457 (diff)
downloadice-e95d34aa245abb5c7dba23a2da0d17c90e90f706.tar.bz2
ice-e95d34aa245abb5c7dba23a2da0d17c90e90f706.tar.xz
ice-e95d34aa245abb5c7dba23a2da0d17c90e90f706.zip
ICE-6455 - remove slice2py and slice2rb C++ exe
Fix slice2rb.rb and slice2py.py scripts for Windows. Fix build issue with IceSSL and MinGW.
Diffstat (limited to 'cpp/src/IceSSL')
-rw-r--r--cpp/src/IceSSL/Util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/Util.cpp b/cpp/src/IceSSL/Util.cpp
index 06ee07cfece..2e3287c1c35 100644
--- a/cpp/src/IceSSL/Util.cpp
+++ b/cpp/src/IceSSL/Util.cpp
@@ -1116,7 +1116,7 @@ IceSSL::findCertificates(const string& prop, const string& storeSpec, const stri
CERT_OID_NAME_STR | CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG,
CERT_OID_NAME_STR | CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG | CERT_NAME_STR_REVERSE_FLAG
};
- for(int i = 0; i < sizeof(flags) / sizeof(DWORD); ++i)
+ for(size_t i = 0; i < sizeof(flags) / sizeof(DWORD); ++i)
{
DWORD length = 0;
if(!CertStrToNameW(X509_ASN_ENCODING, argW.c_str(), flags[i], 0, 0, &length, 0))