summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-13 17:24:35 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-13 17:24:35 +0000
commitcff32df027b57c8031be6b82b9b5abdece590217 (patch)
tree079a1934623c4682eb382c1cdb3c96e95eee58ac /TAO/orbsvcs/tests/ImplRepo
parent98873ef7f4e0aed5a26266f9e857d67247dce2b7 (diff)
downloadATCD-cff32df027b57c8031be6b82b9b5abdece590217.tar.gz
ChangeLogTag:Tue Feb 13 09:17:30 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp1
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/airplane_server.cpp2
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/nestea_server_i.cpp4
3 files changed, 3 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp b/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp
index 6d386d2de1e..093f745386c 100644
--- a/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp
@@ -18,4 +18,3 @@ main (int argc, char **argv)
else
return client.run ();
}
-
diff --git a/TAO/orbsvcs/tests/ImplRepo/airplane_server.cpp b/TAO/orbsvcs/tests/ImplRepo/airplane_server.cpp
index 5a22f6d9285..4b9708cc0e2 100644
--- a/TAO/orbsvcs/tests/ImplRepo/airplane_server.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/airplane_server.cpp
@@ -10,7 +10,7 @@ main (int argc, char *argv[])
Airplane_Server_i server;
ACE_DEBUG ((LM_DEBUG, "\n\tPaper Airplane Server\n\n"));
-
+
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
diff --git a/TAO/orbsvcs/tests/ImplRepo/nestea_server_i.cpp b/TAO/orbsvcs/tests/ImplRepo/nestea_server_i.cpp
index 753562725ee..f7660f13d30 100644
--- a/TAO/orbsvcs/tests/ImplRepo/nestea_server_i.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/nestea_server_i.cpp
@@ -232,16 +232,16 @@ Nestea_Server_i::run (CORBA::Environment &ACE_TRY_ENV)
ACE_TRY
{
- status = this->orb_->run (ACE_TRY_ENV);
+ this->orb_->run (ACE_TRY_ENV);
ACE_TRY_CHECK;
}
ACE_CATCHANY
{
+ status = -1;
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Nestea_i::run");
ACE_RE_THROW;
}
ACE_ENDTRY;
-
ACE_CHECK_RETURN (-1);
return status;