summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-12 18:31:35 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-12 18:31:35 +0000
commitba8f621be0a4062bae0e62e80e8f62db130fa812 (patch)
treec34083c23d1e4a2ff4c1111832e447297028b352 /TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated
parentf32e131159d55db9ab51a1974e01176b69ff967e (diff)
downloadATCD-ba8f621be0a4062bae0e62e80e8f62db130fa812.tar.gz
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated')
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.cpp1
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.cpp2
-rw-r--r--TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/interceptors.cpp20
3 files changed, 11 insertions, 12 deletions
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.cpp b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.cpp
index dcad2c73f61..94bc8630a56 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.cpp
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Client_Task.cpp
@@ -23,7 +23,6 @@ Client_Task::svc (void)
{
try
{
-
CORBA::Object_var object =
corb_->string_to_object (input_);
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.cpp b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.cpp
index 3a33e14abb0..3af152af5d4 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.cpp
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/Server_Task.cpp
@@ -60,7 +60,7 @@ Server_Task::svc (void)
CORBA::String_var ior =
this->sorb_->object_to_string (server.in ());
- ACE_DEBUG ((LM_DEBUG, "Test_Interceptors::Visual: <%s>\n", ior.in ()));
+ ACE_DEBUG ((LM_DEBUG, "Test_Interceptors::Visual: <%C>\n", ior.in ()));
// If the ior_output_file exists, output the ior to it
if (output_ != 0)
diff --git a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/interceptors.cpp b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/interceptors.cpp
index 3525ebbcd07..20bbdf1918b 100644
--- a/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/interceptors.cpp
+++ b/TAO/tests/Portable_Interceptors/Processing_Mode_Policy/Collocated/interceptors.cpp
@@ -64,7 +64,7 @@ Echo_Client_Request_Interceptor::send_request (
ACE_DEBUG ((LM_DEBUG,
"Echo_Client_Request_Interceptor::send_request from "
- "\"%s\"\n",
+ "\"%C\"\n",
op.in ()));
if (ACE_OS::strcmp (op.in (), "normal") == 0)
@@ -97,7 +97,7 @@ Echo_Client_Request_Interceptor::receive_other (
}
ACE_DEBUG ((LM_DEBUG,
"Echo_Client_Request_Interceptor::receive_other "
- "from \"%s\"\n",
+ "from \"%C\"\n",
op.in ()));
}
@@ -116,7 +116,7 @@ Echo_Client_Request_Interceptor::receive_reply (
ACE_DEBUG ((LM_DEBUG,
"Echo_Client_Request_Interceptor::receive_reply "
- "from \"%s\"\n",
+ "from \"%C\"\n",
op.in ()));
if (ACE_OS::strcmp (op.in (), "normal") == 0)
@@ -171,11 +171,11 @@ Echo_Client_Request_Interceptor::receive_exception (
ACE_DEBUG ((LM_DEBUG,
"Echo_Client_Request_Interceptor::received_exception "
- "from \"%s\"\n",
+ "from \"%C\"\n",
op.in ()));
ACE_DEBUG ((LM_DEBUG,
- "Exception ID = %s\n",
+ "Exception ID = %C\n",
exception_id.in ()));
}
@@ -222,7 +222,7 @@ Echo_Server_Request_Interceptor::receive_request (
ri->object_id ();
ACE_DEBUG ((LM_DEBUG,
- "Echo_Server_Request_Interceptor::receive_request from \"%s\"\n",
+ "Echo_Server_Request_Interceptor::receive_request from \"%C\"\n",
op.in ()));
if (ACE_OS::strcmp (op.in (), "normal") == 0)
@@ -245,7 +245,7 @@ Echo_Server_Request_Interceptor::receive_request (
ri->target_most_derived_interface ();
ACE_DEBUG ((LM_DEBUG,
- "Target most derived interface: %s\n",
+ "Target most derived interface: %C\n",
tmdi.in ()));
}
@@ -263,7 +263,7 @@ Echo_Server_Request_Interceptor::send_reply (
}
ACE_DEBUG ((LM_DEBUG,
- "Echo_Server_Request_Interceptor::send_reply from \"%s\"\n",
+ "Echo_Server_Request_Interceptor::send_reply from \"%C\"\n",
op.in ()));
if (ACE_OS::strcmp (op.in (), "normal") == 0)
@@ -318,7 +318,7 @@ Echo_Server_Request_Interceptor::send_exception (
ACE_DEBUG ((LM_DEBUG,
"Echo_Server_Request_Interceptor::send_exception "
- "from \"%s\"\n",
+ "from \"%C\"\n",
op.in ()));
@@ -330,7 +330,7 @@ Echo_Server_Request_Interceptor::send_exception (
const char *exception_id = type->id ();
ACE_DEBUG ((LM_DEBUG,
- "Exception ID = %s\n",
+ "Exception ID = %C\n",
exception_id));
}