summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-09-01 14:48:51 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-09-01 14:48:51 +0200
commitd30148e3724f0fcb623f282122bbb62ca64fe591 (patch)
tree7e615829c049ce0d2f7c2dff9223a19338e68f73
parent82a6ded0476400b130ec65cdb757f96a940b3072 (diff)
downloadATCD-d30148e3724f0fcb623f282122bbb62ca64fe591.tar.gz
Fixed size_t to int conversion
* TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp:
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp
index a221cba57af..cd43a64f64c 100644
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp
+++ b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp
@@ -591,7 +591,7 @@ TAO::SSLIOP::Acceptor::parse_options_i (int &argc, ACE_CString ** argv)
// since the base class has already iterated over the list once,
// it has vound any ill-formed options. Therefore we don't need
// to do that again here.
- int slot = argv[i]->find ("=");
+ size_t const slot = argv[i]->find ("=");
ACE_CString name = argv[i]->substring (0, slot);
ACE_CString value = argv[i]->substring (slot + 1);