summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-04 03:42:40 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-04 03:42:40 +0000
commit00b6c65498110965b92403cf07edc24085f4bfca (patch)
tree1d5622ee303781f93f8d9f96c43c17937bafaa94 /TAO/tao
parentbf3b65d6a89a41f1a050c2d76421515aa08b5f7f (diff)
downloadATCD-00b6c65498110965b92403cf07edc24085f4bfca.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/POA.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/POA.cpp b/TAO/tao/POA.cpp
index d13c30daead..e602521ae90 100644
--- a/TAO/tao/POA.cpp
+++ b/TAO/tao/POA.cpp
@@ -2929,7 +2929,7 @@ TAO_POA::encode_sequence_to_string (CORBA::String &str,
i++)
{
u_char byte = seq[i];
- if (isascii (byte) && isprint (byte) && byte != '\\')
+ if (isprint (byte) && byte != '\\')
{
*cp++ = (char) byte;
continue;