summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-10-06 14:01:39 +0200
committerGitHub <noreply@github.com>2022-10-06 14:01:39 +0200
commit2400ccf08afdf0ea9a60d18777c7a177bca09569 (patch)
tree2d85f9ddf183d019c9cb40ed3bd9d5ef2278575a
parentf460e34343e82583e6c04344b914046ca66cee3a (diff)
parentd14bdd5c85dc0f4fb21ee6d3443d0e79ac0a652e (diff)
downloadATCD-2400ccf08afdf0ea9a60d18777c7a177bca09569.tar.gz
Merge pull request #1960 from jwillemsen/jwi-vxworksgethost
Updated VxWorks checks
-rw-r--r--ACE/ace/os_include/os_netdb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/os_include/os_netdb.h b/ACE/ace/os_include/os_netdb.h
index 3c12d5d5059..de509b4cbc7 100644
--- a/ACE/ace/os_include/os_netdb.h
+++ b/ACE/ace/os_include/os_netdb.h
@@ -38,12 +38,12 @@ extern "C"
#if defined (ACE_VXWORKS)
# include /**/ <hostLib.h>
-# if (ACE_VXWORKS <= 0x700) || defined (GETHOSTBYNAME_REENTRANT)
+# if (ACE_VXWORKS < 0x700) || defined (GETHOSTBYNAME_REENTRANT)
// With VxWorks 7 hostLib.h defines GETHOSTBYNAME_REENTRANT when gethostbyname()
// is reentrant
# define ACE_VXWORKS_HAS_GETHOSTBYNAME_REENTRANT
# endif
-# if (ACE_VXWORKS <= 0x700) || defined (GETHOSTBYADDR_REENTRANT)
+# if (ACE_VXWORKS < 0x700) || defined (GETHOSTBYADDR_REENTRANT)
// With VxWorks 7 hostLib.h defines GETHOSTBYADDR_REENTRANT when gethostbyaddr()
// is reentrant
# define ACE_VXWORKS_HAS_GETHOSTBYADDR_REENTRANT