summaryrefslogtreecommitdiff
path: root/tests/Enum_Interfaces_Test.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-08-14 07:10:06 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-08-14 07:10:06 +0000
commit69d374d5c69b306b1451bd9ae728a7ee3b04b17a (patch)
tree1e2274c040da23d83cc389a4282dffac5f7a2864 /tests/Enum_Interfaces_Test.cpp
parent5d6aed4351ed1a6483ad1893937b564cfdda537a (diff)
downloadATCD-69d374d5c69b306b1451bd9ae728a7ee3b04b17a.tar.gz
ChangeLogTag:Fri Aug 13 23:26:56 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'tests/Enum_Interfaces_Test.cpp')
-rw-r--r--tests/Enum_Interfaces_Test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Enum_Interfaces_Test.cpp b/tests/Enum_Interfaces_Test.cpp
index 4afb92de031..b9bd438c6c0 100644
--- a/tests/Enum_Interfaces_Test.cpp
+++ b/tests/Enum_Interfaces_Test.cpp
@@ -52,22 +52,22 @@ run_main (int, ACE_TCHAR *[])
if (rc != 0)
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("%p\n"),
- ACE_TEXT ("ACE::get_ip_interfaces failed")));
+ ACE_TEXT ("%p\n"),
+ ACE_TEXT ("ACE::get_ip_interfaces failed")));
else if (how_many == 0)
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("No interfaces presently configured in the kernel\n")));
+ ACE_TEXT ("No interfaces presently configured in the kernel\n")));
else
{
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("there are %d interfaces\n"), how_many));
for (size_t i = 0; i < how_many; i++)
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\t%s\n"),
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\t%s\n"),
ACE_TEXT_CHAR_TO_TCHAR (the_addr_array[i].get_host_addr ())));
delete [] the_addr_array;
}
ACE_END_TEST;
- return rc != 0; // return 1 if get_ip_interfaces() failed
+ return rc != 0; // return 1 if get_ip_interfaces() failed
}