diff options
author | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-04-11 12:35:40 +0000 |
---|---|---|
committer | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-04-11 12:35:40 +0000 |
commit | 049832471d14d01b6897c540c27a55b3a2240f58 (patch) | |
tree | 70f6d307afc2d4ed595fd7b9b1f65800459ab7bb /ACE/ace/SOCK_Dgram.cpp | |
parent | 5d6dcd02b8c1717ecb8eb65ccb388c182fc859ae (diff) | |
download | ATCD-049832471d14d01b6897c540c27a55b3a2240f58.tar.gz |
ChangeLogTag: Wed Apr 11 12:33:37 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'ACE/ace/SOCK_Dgram.cpp')
-rw-r--r-- | ACE/ace/SOCK_Dgram.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/SOCK_Dgram.cpp b/ACE/ace/SOCK_Dgram.cpp index 08c844cea08..6578e9a25d2 100644 --- a/ACE/ace/SOCK_Dgram.cpp +++ b/ACE/ace/SOCK_Dgram.cpp @@ -350,7 +350,7 @@ ACE_SOCK_Dgram::send (const iovec iov[], // Determine the total length of all the buffers in <iov>. for (i = 0; i < n; i++) -#if ! (defined(__BORLANDC__) || defined(linux) || defined(__RTEMS_MAJOR__)) +#if ! (defined(__BORLANDC__) || defined(linux) || defined(ACE_HAS_RTEMS)) // The iov_len is unsigned on Linux, RTEMS and with Borland. If we go // ahead and try the if, it will emit a warning. if (iov[i].iov_len < 0) @@ -399,7 +399,7 @@ ACE_SOCK_Dgram::recv (iovec iov[], int i; for (i = 0; i < n; i++) -#if ! (defined(__BORLANDC__) || defined(linux) || defined(__RTEMS_MAJOR__)) +#if ! (defined(__BORLANDC__) || defined(linux) || defined(ACE_HAS_RTEMS)) // The iov_len is unsigned on Linux, RTEMS and with Borland. If we go // ahead and try the if, it will emit a warning. if (iov[i].iov_len < 0) |