diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-11-29 18:32:04 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-11-29 18:37:24 +0100 |
commit | ea0a1b27082451a8871f9af7910f053c44084f4e (patch) | |
tree | fdc9dafd1001e5a339db784ced290a04a4d973c8 /lib/common_test/src/ct_netconfc.erl | |
parent | d5de2e1ffd6403f5d7ec62e6ce8da508e1cb1239 (diff) | |
download | otp-ea0a1b27082451a8871f9af7910f053c44084f4e.tar.gz otp-ea0a1b27082451a8871f9af7910f053c44084f4e.tar.bz2 otp-ea0a1b27082451a8871f9af7910f053c44084f4e.zip |
common_test: Fix exported types
* inet:host_name() -> inet:hostname()
* ct:hook_options() -> ct_netconfc:hook_options()
Diffstat (limited to 'lib/common_test/src/ct_netconfc.erl')
-rw-r--r-- | lib/common_test/src/ct_netconfc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_netconfc.erl b/lib/common_test/src/ct_netconfc.erl index 294b82bff6..11c8235040 100644 --- a/lib/common_test/src/ct_netconfc.erl +++ b/lib/common_test/src/ct_netconfc.erl @@ -307,7 +307,7 @@ -type option() :: {ssh,host()} | {port,inet:port_number()} | {user,string()} | {password,string()} | {user_dir,string()} | {timeout,timeout()}. --type host() :: inet:host_name() | inet:ip_address(). +-type host() :: inet:hostname() | inet:ip_address(). -type notification() :: {notification, xml_attributes(), notification_content()}. -type notification_content() :: [event_time()|simple_xml()]. |