diff options
author | Micael Karlberg <[email protected]> | 2011-06-17 13:24:08 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-06-17 13:24:08 +0200 |
commit | e72a9e3850acb0587e903c1c5ba236289c982006 (patch) | |
tree | 22f8aadc9347737f3bb1b7e6605d331bf04f322c /lib/inets | |
parent | 186428028b2f53a284b32d1a63c1ce140633cb48 (diff) | |
download | otp-e72a9e3850acb0587e903c1c5ba236289c982006.tar.gz otp-e72a9e3850acb0587e903c1c5ba236289c982006.tar.bz2 otp-e72a9e3850acb0587e903c1c5ba236289c982006.zip |
Fixed ipv6 support detection.
Diffstat (limited to 'lib/inets')
-rw-r--r-- | lib/inets/test/inets_test_lib.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/inets_test_lib.erl b/lib/inets/test/inets_test_lib.erl index fe680fb35a..2e19c41f16 100644 --- a/lib/inets/test/inets_test_lib.erl +++ b/lib/inets/test/inets_test_lib.erl @@ -42,7 +42,7 @@ %% -- Misc os command and stuff has_ipv6_support(Config) -> - case lists:keysearch(ipv6_hosts, Config) of + case lists:keysearch(ipv6_hosts, 1, Config) of false -> %% Do a basic check to se if %% our own host has a working IPv6 address... |