summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/HTIOP/BiDirectional
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:37:15 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:37:15 +0100
commitfe0a8e3c6c8bf1d10a71d1eee6a956c3560bd562 (patch)
tree814922c24616e5db888b750a0ff692f2ce8368a8 /TAO/orbsvcs/tests/HTIOP/BiDirectional
parent5a0dbea7c881e97c5419d8584a45ed43d07ab8e9 (diff)
downloadATCD-fe0a8e3c6c8bf1d10a71d1eee6a956c3560bd562.tar.gz
bool changes
Diffstat (limited to 'TAO/orbsvcs/tests/HTIOP/BiDirectional')
-rw-r--r--TAO/orbsvcs/tests/HTIOP/BiDirectional/client.cpp4
-rw-r--r--TAO/orbsvcs/tests/HTIOP/BiDirectional/server.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/HTIOP/BiDirectional/client.cpp b/TAO/orbsvcs/tests/HTIOP/BiDirectional/client.cpp
index 53352e04b91..9263fbe4b54 100644
--- a/TAO/orbsvcs/tests/HTIOP/BiDirectional/client.cpp
+++ b/TAO/orbsvcs/tests/HTIOP/BiDirectional/client.cpp
@@ -129,7 +129,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
orb->run ();
- root_poa->destroy (1, 1);
+ root_poa->destroy (true, true);
}
catch (const CORBA::Exception& ex)
@@ -139,7 +139,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
}
if (!CORBA::is_nil(root_poa.in()))
- root_poa->destroy (1,1);
+ root_poa->destroy (1, 1);
delete servant;
return 0;
diff --git a/TAO/orbsvcs/tests/HTIOP/BiDirectional/server.cpp b/TAO/orbsvcs/tests/HTIOP/BiDirectional/server.cpp
index 449144691ff..f9e6a88977e 100644
--- a/TAO/orbsvcs/tests/HTIOP/BiDirectional/server.cpp
+++ b/TAO/orbsvcs/tests/HTIOP/BiDirectional/server.cpp
@@ -141,7 +141,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
}
ACE_DEBUG ((LM_DEBUG, "event loop finished\n"));
- root_poa->destroy (1, 1);
+ root_poa->destroy (true, true);
}
catch (const CORBA::Exception& ex)
{