diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-09 05:21:16 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-09 05:21:16 +0000 |
commit | a4c886022c20e88f5c26799f929f48e33ab302c5 (patch) | |
tree | 7277c8138259d1044e338fab5bc1d7c498c62595 /TAO | |
parent | 08844f5a2d141bcd4209df763175925feea166c2 (diff) | |
download | ATCD-a4c886022c20e88f5c26799f929f48e33ab302c5.tar.gz |
ChangeLogTag:Fri Jul 09 00:11:35 1999 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/tao/Connector_Registry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Connector_Registry.cpp b/TAO/tao/Connector_Registry.cpp index 447d52cf01d..a8c484deff5 100644 --- a/TAO/tao/Connector_Registry.cpp +++ b/TAO/tao/Connector_Registry.cpp @@ -207,7 +207,7 @@ TAO_Connector_Registry::preprocess_preconnects (TAO_ORB_Core *orb_core, ACE_CString protocol_name = i->substring (0, slot); if (slot != ACE_CString::npos && - slot != (i->length () - 3) && + slot != ACE_static_cast (int, (i->length () - 3)) && (*factory)->factory ()->match_prefix (protocol_name.c_str ())) { (*tmp) += i->substring (slot + 3); // +3 due to "://" |