summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-06-25 16:46:47 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-06-25 16:46:47 +0200
commit5c09ab8d5f38438847a7a490a579840eea07d58a (patch)
treec5813e287f3c9fc182110cf02f6c96ab38abb583
parent5e0d93921e50d796125c52e9ac63121d30fc2dbe (diff)
downloadATCD-5c09ab8d5f38438847a7a490a579840eea07d58a.tar.gz
Fixed incorrect logging of ascii strings in portableserver
* TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp: * TAO/tao/PortableServer/ImplicitActivationStrategyFactoryImpl.cpp: * TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp: * TAO/tao/PortableServer/ServantRetentionStrategyFactoryImpl.cpp:
-rw-r--r--TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp2
-rw-r--r--TAO/tao/PortableServer/ImplicitActivationStrategyFactoryImpl.cpp2
-rw-r--r--TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp2
-rw-r--r--TAO/tao/PortableServer/ServantRetentionStrategyFactoryImpl.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp b/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp
index 35a5119f07d..3cf57936cb8 100644
--- a/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp
+++ b/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp
@@ -34,7 +34,7 @@ namespace TAO
if (strategy == 0)
TAOLIB_ERROR ((LM_ERROR,
- ACE_TEXT ("(%P|%t) ERROR, Unable to get %s\n"),
+ ACE_TEXT ("(%P|%t) ERROR, Unable to get %C\n"),
strategy_name));
return strategy;
diff --git a/TAO/tao/PortableServer/ImplicitActivationStrategyFactoryImpl.cpp b/TAO/tao/PortableServer/ImplicitActivationStrategyFactoryImpl.cpp
index a488aeaa7c9..14746777670 100644
--- a/TAO/tao/PortableServer/ImplicitActivationStrategyFactoryImpl.cpp
+++ b/TAO/tao/PortableServer/ImplicitActivationStrategyFactoryImpl.cpp
@@ -36,7 +36,7 @@ namespace TAO
if (strategy == 0)
TAOLIB_ERROR ((LM_ERROR,
- ACE_TEXT ("(%P|%t) ERROR, Unable to get %s\n"),
+ ACE_TEXT ("(%P|%t) ERROR, Unable to get %C\n"),
strategy_name));
return strategy;
diff --git a/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp b/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp
index d7e4388c991..30b613043d9 100644
--- a/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp
+++ b/TAO/tao/PortableServer/LifespanStrategyFactoryImpl.cpp
@@ -36,7 +36,7 @@ namespace TAO
strategy = strategy_factory->create (value);
else
TAOLIB_ERROR ((LM_ERROR,
- ACE_TEXT ("(%P|%t) ERROR, Unable to get %s\n"),
+ ACE_TEXT ("(%P|%t) ERROR, Unable to get %C\n"),
strategy_name));
diff --git a/TAO/tao/PortableServer/ServantRetentionStrategyFactoryImpl.cpp b/TAO/tao/PortableServer/ServantRetentionStrategyFactoryImpl.cpp
index 79988662a34..6d10a72164d 100644
--- a/TAO/tao/PortableServer/ServantRetentionStrategyFactoryImpl.cpp
+++ b/TAO/tao/PortableServer/ServantRetentionStrategyFactoryImpl.cpp
@@ -39,7 +39,7 @@ namespace TAO
{
if (TAO_debug_level > 1)
TAOLIB_ERROR ((LM_ERROR,
- ACE_TEXT ("(%P|%t) ERROR, Unable to get %s\n"),
+ ACE_TEXT ("(%P|%t) ERROR, Unable to get %C\n"),
strategy_factory_name));
return 0;