summaryrefslogtreecommitdiff
path: root/TAO/tao/ORB.cpp
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-06-28 00:06:10 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-06-28 00:06:10 +0000
commit91cc23f0fd5d399171e9825d81627cf207d7b299 (patch)
treed87dfc671858eef9398d9bad66940d7be7eb665c /TAO/tao/ORB.cpp
parentaa8a4bfc14a64bb8dea7006ff6bfed467b459ca5 (diff)
downloadATCD-91cc23f0fd5d399171e9825d81627cf207d7b299.tar.gz
Thu Jun 28 00:03:58 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
Diffstat (limited to 'TAO/tao/ORB.cpp')
-rw-r--r--TAO/tao/ORB.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp
index 4f475ffb5a3..37e7293921d 100644
--- a/TAO/tao/ORB.cpp
+++ b/TAO/tao/ORB.cpp
@@ -44,7 +44,7 @@ ACE_RCSID (tao,
#include "ace/Static_Object_Lock.h"
#include "ace/OS_NS_strings.h"
#include "ace/OS_NS_string.h"
-#include "ace/os_include/os_ctype.h"
+#include "ace/OS_NS_ctype.h"
#include "ace/CORBA_macros.h"
static const char ior_prefix[] = "IOR:";
@@ -1550,7 +1550,7 @@ CORBA::ORB::ior_string_to_object (const char *str)
#undef byte
unsigned char byte;
- if (!(isxdigit (tmp [0]) && isxdigit (tmp [1])))
+ if (!(ACE_OS::ace_isxdigit (tmp [0]) && ACE_OS::ace_isxdigit (tmp [1])))
break;
byte = (u_char) (ACE::hex2byte (tmp [0]) << 4);
@@ -1560,7 +1560,7 @@ CORBA::ORB::ior_string_to_object (const char *str)
tmp += 2;
}
- if (tmp [0] && !isspace (tmp [0]))
+ if (tmp [0] && !ACE_OS::ace_isspace (tmp [0]))
{
throw ::CORBA::BAD_PARAM ();
}