summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-28 15:00:03 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-28 15:00:03 +0000
commit0a7f7074e9457fef44af0b823c8db11ea914cf2d (patch)
tree52eda03797c53d2257eac5a59d9bb73e7c3f8d7e
parent3775a67f1b8630cb5343fefbde15aee679c9080f (diff)
downloadATCD-0a7f7074e9457fef44af0b823c8db11ea914cf2d.tar.gz
Wed Feb 28 14:59:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp8
-rw-r--r--TAO/orbsvcs/tests/Security/MT_IIOP_SSL/Server_Worker.cpp2
-rw-r--r--TAO/orbsvcs/tests/Security/MT_SSLIOP/Client_Worker.cpp2
-rw-r--r--TAO/orbsvcs/tests/Security/MT_SSLIOP/Server_Worker.cpp2
5 files changed, 14 insertions, 8 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index ed13c970d79..ce829122850 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Wed Feb 28 14:59:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp:
+ * orbsvcs/tests/Security/MT_IIOP_SSL/Server_Worker.cpp:
+ * orbsvcs/tests/Security/MT_SSLIOP/Client_Worker.cpp:
+ * orbsvcs/tests/Security/MT_SSLIOP/Server_Worker.cpp:
+ Fixed unreferenced local variable warnings
+
Wed Feb 28 14:44:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Param_Test/options.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp
index 34be4b66a98..9de5610dba1 100644
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp
+++ b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp
@@ -47,8 +47,7 @@ TAO::SSLIOP::Connection_Handler::Connection_Handler (
TAO_Connection_Handler (orb_core),
current_ ()
{
- this->current_ =
- TAO::SSLIOP::Util::current (orb_core);
+ this->current_ = TAO::SSLIOP::Util::current (orb_core);
TAO::SSLIOP::Transport* specific_transport = 0;
ACE_NEW (specific_transport,
@@ -112,7 +111,7 @@ TAO::SSLIOP::Connection_Handler::open (void *)
protocol_properties);
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return -1;
}
@@ -364,8 +363,7 @@ TAO::SSLIOP::Connection_Handler::add_transport_to_cache (void)
this->orb_core ()->lane_resources ().transport_cache ();
// Add the handler to Cache
- return cache.cache_idle_transport (&prop,
- this->transport ());
+ return cache.cache_idle_transport (&prop, this->transport ());
}
int
diff --git a/TAO/orbsvcs/tests/Security/MT_IIOP_SSL/Server_Worker.cpp b/TAO/orbsvcs/tests/Security/MT_IIOP_SSL/Server_Worker.cpp
index 066154a3f59..97a07eb9c74 100644
--- a/TAO/orbsvcs/tests/Security/MT_IIOP_SSL/Server_Worker.cpp
+++ b/TAO/orbsvcs/tests/Security/MT_IIOP_SSL/Server_Worker.cpp
@@ -13,7 +13,7 @@ Server_Worker::svc (void)
{
this->orb_->run ();
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
}
return 0;
diff --git a/TAO/orbsvcs/tests/Security/MT_SSLIOP/Client_Worker.cpp b/TAO/orbsvcs/tests/Security/MT_SSLIOP/Client_Worker.cpp
index 95ff3134ba4..102792a0f94 100644
--- a/TAO/orbsvcs/tests/Security/MT_SSLIOP/Client_Worker.cpp
+++ b/TAO/orbsvcs/tests/Security/MT_SSLIOP/Client_Worker.cpp
@@ -29,7 +29,7 @@ Client_Worker::validate_connection (void)
ACE_DEBUG (( LM_DEBUG,
"******** VALIDATED ******* \n"));
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
}
}
diff --git a/TAO/orbsvcs/tests/Security/MT_SSLIOP/Server_Worker.cpp b/TAO/orbsvcs/tests/Security/MT_SSLIOP/Server_Worker.cpp
index 066154a3f59..97a07eb9c74 100644
--- a/TAO/orbsvcs/tests/Security/MT_SSLIOP/Server_Worker.cpp
+++ b/TAO/orbsvcs/tests/Security/MT_SSLIOP/Server_Worker.cpp
@@ -13,7 +13,7 @@ Server_Worker::svc (void)
{
this->orb_->run ();
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
}
return 0;