summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-04 23:22:00 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-04 23:22:00 +0000
commit03fb16b31fd3759f42da032fb4f1a81b6d3b8513 (patch)
tree0b1913aff408d0f9f817e59b71465fbe415cd0f7
parentc6e64bd343996c9f7f9efdaf1a35745ae5cece01 (diff)
downloadATCD-03fb16b31fd3759f42da032fb4f1a81b6d3b8513.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-98c4
-rw-r--r--TAO/utils/catior/catior.cpp6
2 files changed, 4 insertions, 6 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 69649f051bd..8c1adf66468 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,5 +1,9 @@
Fri Sep 4 17:10:36 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * utils/catior/catior.cpp (catior): Removed a check for "if (tmp
+ [0] && !isspace (tmp [0]))" since not all ORBs encode IORs
+ consistently. Thanks to Jeff Hopper for reporting this.
+
* utils/catior/foo/catior.cpp (main): Added a fix for IORs with
embedded '\0' characters. Thanks to Jeff Hopper
<jhopper@nosc.mil> for this.
diff --git a/TAO/utils/catior/catior.cpp b/TAO/utils/catior/catior.cpp
index 3781a3ae613..92d44a3740b 100644
--- a/TAO/utils/catior/catior.cpp
+++ b/TAO/utils/catior/catior.cpp
@@ -149,12 +149,6 @@ catior (CORBA::String str,
tmp += 2;
}
- if (tmp [0] && !isspace (tmp [0]))
- {
- env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
- return 0;
- }
-
// Create deencapsulation stream ... then unmarshal objref from that
// stream.