summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2017-03-28 10:25:16 -0400
committerJoe George <joe@zeroc.com>2017-03-28 10:25:16 -0400
commit7f80ea0db36533c25ffacfccb05a4b8ee657a95f (patch)
tree7b619b723fa94ac7996ca9578eae3fbf40f4cc9e /cpp/src
parentICE-7707 Improved handling of argc/argv arguments (diff)
parentICE-7483 - Rename OS X to macOS (diff)
downloadice-7f80ea0db36533c25ffacfccb05a4b8ee657a95f.tar.bz2
ice-7f80ea0db36533c25ffacfccb05a4b8ee657a95f.tar.xz
ice-7f80ea0db36533c25ffacfccb05a4b8ee657a95f.zip
Merge remote-tracking branch 'origin/3.6'
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/CountDownLatch.cpp2
-rw-r--r--cpp/src/Ice/DynamicLibrary.cpp2
-rwxr-xr-xcpp/src/Ice/Network.cpp2
-rwxr-xr-xcpp/src/Ice/UdpTransceiver.cpp2
-rw-r--r--cpp/src/IcePatch2Lib/Util.cpp2
-rw-r--r--cpp/src/IceSSL/SecureTransportTransceiverI.cpp2
6 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Ice/CountDownLatch.cpp b/cpp/src/Ice/CountDownLatch.cpp
index 53887744c01..3a363cc3709 100644
--- a/cpp/src/Ice/CountDownLatch.cpp
+++ b/cpp/src/Ice/CountDownLatch.cpp
@@ -115,7 +115,7 @@ IceUtilInternal::CountDownLatch::countDown()
}
#if defined(__APPLE__)
//
- // On OS X we do the broadcast with the mutex held. This seems to
+ // On macOS we do the broadcast with the mutex held. This seems to
// be necessary to prevent the broadcast call to hang (spinning in
// an infinite loop).
//
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp
index 6273ebd7a98..82ca2addc02 100644
--- a/cpp/src/Ice/DynamicLibrary.cpp
+++ b/cpp/src/Ice/DynamicLibrary.cpp
@@ -183,7 +183,7 @@ IceInternal::DynamicLibrary::loadEntryPoint(const string& entryPoint, bool useIc
#ifdef __APPLE__
//
- // On OS X fallback to .so and .bundle extensions, if the default
+ // On macOS fallback to .so and .bundle extensions, if the default
// .dylib fails.
//
if(!load(lib + ".dylib"))
diff --git a/cpp/src/Ice/Network.cpp b/cpp/src/Ice/Network.cpp
index 572df1b4cfc..599f6537896 100755
--- a/cpp/src/Ice/Network.cpp
+++ b/cpp/src/Ice/Network.cpp
@@ -1107,7 +1107,7 @@ IceInternal::getAddresses(const string& host, int port, ProtocolSupport protocol
// In theory, getaddrinfo should only return EAI_NONAME if
// AI_NUMERICHOST is specified and the host name is not a IP
- // address. However on some platforms (e.g. OS X 10.4.x)
+ // address. However on some platforms (e.g. macOS 10.4.x)
// EAI_NODATA is also returned so we also check for it.
# ifdef EAI_NODATA
if(!canBlock && (rs == EAI_NONAME || rs == EAI_NODATA))
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp
index bcb78ed2373..2b36f64d754 100755
--- a/cpp/src/Ice/UdpTransceiver.cpp
+++ b/cpp/src/Ice/UdpTransceiver.cpp
@@ -899,7 +899,7 @@ IceInternal::UdpTransceiver::UdpTransceiver(const ProtocolInstancePtr& instance,
//
// NOTE: setting the multicast interface before performing the
- // connect is important for some OS such as OS X.
+ // connect is important for some OS such as macOS.
//
if(isMulticast(_addr))
{
diff --git a/cpp/src/IcePatch2Lib/Util.cpp b/cpp/src/IcePatch2Lib/Util.cpp
index 63aa2583532..4fb9f32850d 100644
--- a/cpp/src/IcePatch2Lib/Util.cpp
+++ b/cpp/src/IcePatch2Lib/Util.cpp
@@ -34,7 +34,7 @@
#include <iterator>
-// Ignore OS X OpenSSL deprecation warnings
+// Ignore macOS OpenSSL deprecation warnings
#ifdef __APPLE__
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
diff --git a/cpp/src/IceSSL/SecureTransportTransceiverI.cpp b/cpp/src/IceSSL/SecureTransportTransceiverI.cpp
index 6d83dba98df..a4fad08ca87 100644
--- a/cpp/src/IceSSL/SecureTransportTransceiverI.cpp
+++ b/cpp/src/IceSSL/SecureTransportTransceiverI.cpp
@@ -160,7 +160,7 @@ checkTrustResult(SecTrustRef trust,
}
default:
// case kSecTrustResultInvalid:
- // case kSecTrustResultConfirm: // Used in old OS X versions
+ // case kSecTrustResultConfirm: // Used in old macOS versions
// case kSecTrustResultDeny:
// case kSecTrustResultRecoverableTrustFailure:
// case kSecTrustResultFatalTrustFailure: