mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 17:50:31 -04:00
A few critical patches got merged upstream, a few new were required to maintain LibreSSL support and fix other new issues. Note that slice2py moved from devel/py-ice to devel/ice. Approved by: mentors (implicit)
11 lines
588 B
C++
11 lines
588 B
C++
--- cpp/src/Glacier2CryptPermissionsVerifier/CryptPermissionsVerifierI.cpp~ 2016-10-05 16:59:08.000000000 +0200
|
|
+++ cpp/src/Glacier2CryptPermissionsVerifier/CryptPermissionsVerifierI.cpp 2016-10-11 23:40:30.829983908 +0200
|
|
@@ -200,7 +200,7 @@
|
|
return p->second == crypt_r(password.c_str(), salt.c_str(), &data);
|
|
# else
|
|
IceUtilInternal::MutexPtrLock<IceUtil::Mutex> lock(_staticMutex);
|
|
- return p->second == crypt(password.c_str(), salt.c_str())
|
|
+ return p->second == crypt(password.c_str(), salt.c_str());
|
|
# endif
|
|
#elif defined(__APPLE__) || defined(_WIN32)
|
|
//
|