summaryrefslogtreecommitdiff
path: root/netsvcs/clients
diff options
context:
space:
mode:
Diffstat (limited to 'netsvcs/clients')
-rw-r--r--netsvcs/clients/Logger/indirect_logging.cpp2
-rw-r--r--netsvcs/clients/Naming/Client/main.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/netsvcs/clients/Logger/indirect_logging.cpp b/netsvcs/clients/Logger/indirect_logging.cpp
index aa5461e3b10..d13febea1d1 100644
--- a/netsvcs/clients/Logger/indirect_logging.cpp
+++ b/netsvcs/clients/Logger/indirect_logging.cpp
@@ -19,7 +19,7 @@ main (int argc, char *argv[])
ACE_OS::srand ((u_int) ACE_OS::time (0));
ACE_LOG_MSG->open (prog_name, ACE_Log_Msg::LOGGER,
- ACE_WIDE_STRING (logger_key));
+ ACE_TEXT_CHAR_TO_TCHAR (logger_key));
ACE_DEBUG ((LM_STARTUP, "starting up the test\n"));
diff --git a/netsvcs/clients/Naming/Client/main.cpp b/netsvcs/clients/Naming/Client/main.cpp
index 001218fa05d..8930bb61a6d 100644
--- a/netsvcs/clients/Naming/Client/main.cpp
+++ b/netsvcs/clients/Naming/Client/main.cpp
@@ -23,13 +23,13 @@ main (int, char *argv[])
new_args.add ("-d");
ACE_DEBUG ((LM_DEBUG,
- ASYS_TEXT ("argc = %d\n"),
- ASYS_TEXT (new_args.argc ())));
+ ACE_TEXT ("argc = %d\n"),
+ ACE_TEXT (new_args.argc ())));
// Print the contents of the combined <ACE_ARGV>.
for (size_t i = 0; i < new_args.argc (); i++)
ACE_DEBUG ((LM_DEBUG,
- ASYS_TEXT ("(%d) %s\n"),
+ ACE_TEXT ("(%d) %s\n"),
i,
new_args.argv ()[i]));