summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2017-03-30 16:17:57 -0400
committerSteve Huston <shuston@riverace.com>2017-03-30 16:48:47 -0400
commit7ff635b0d551cfcfb18ec4d85cbc392b3c397d02 (patch)
tree914e422eeb685fde30a095ff70988e10f7a8ceda
parenta138322c8154ab32634839ffec7c04a38886d459 (diff)
downloadATCD-7ff635b0d551cfcfb18ec4d85cbc392b3c397d02.tar.gz
Removed tabs flagged by fuzz
-rw-r--r--ACE/tests/INET_Addr_Test_IPV6.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/ACE/tests/INET_Addr_Test_IPV6.cpp b/ACE/tests/INET_Addr_Test_IPV6.cpp
index 049c98ad88c..ca6185a1c10 100644
--- a/ACE/tests/INET_Addr_Test_IPV6.cpp
+++ b/ACE/tests/INET_Addr_Test_IPV6.cpp
@@ -81,25 +81,25 @@ static bool check_both_families()
ACE_INET_Addr b;
if (-1 == b.set(ACE_TEXT(""), ACE_TEXT("www.google.com"), ACE_TEXT("tcp6")))
- {
- ACE_ERROR((LM_ERROR,
- ACE_TEXT("%p\n"),
- ACE_TEXT("both test 6, www.google.com")));
- good = false;
- }
+ {
+ ACE_ERROR((LM_ERROR,
+ ACE_TEXT("%p\n"),
+ ACE_TEXT("both test 6, www.google.com")));
+ good = false;
+ }
else
- {
- ACE_TCHAR str[1000];
- b.addr_to_string(str, 1000, 1);
- ACE_DEBUG((LM_DEBUG, ACE_TEXT("got type %d, addr %s\n"), b.get_type(), str));
- // Should have selected IPv6.
- if (b.get_type() != AF_INET6)
- {
- ACE_ERROR((LM_ERROR,
- ACE_TEXT("Wrong address family, expecting IPv6\n")));
- good = false;
- }
- }
+ {
+ ACE_TCHAR str[1000];
+ b.addr_to_string(str, 1000, 1);
+ ACE_DEBUG((LM_DEBUG, ACE_TEXT("got type %d, addr %s\n"), b.get_type(), str));
+ // Should have selected IPv6.
+ if (b.get_type() != AF_INET6)
+ {
+ ACE_ERROR((LM_ERROR,
+ ACE_TEXT("Wrong address family, expecting IPv6\n")));
+ good = false;
+ }
+ }
return good;
}