diff options
author | Tuncer Ayaz <[email protected]> | 2013-12-12 13:07:49 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-01-28 14:53:02 +0100 |
commit | f98905ad6f76fda775c0c75c410adbd9dd642916 (patch) | |
tree | 2baee57d53bab1d5ef93e7292ec86da608053ce2 /lib | |
parent | 8a8cfa06be6d9c2df39dedcdcef92e8b32e370f7 (diff) | |
download | otp-f98905ad6f76fda775c0c75c410adbd9dd642916.tar.gz otp-f98905ad6f76fda775c0c75c410adbd9dd642916.tar.bz2 otp-f98905ad6f76fda775c0c75c410adbd9dd642916.zip |
Fix incorrect type reference (inet:ipaddress() -> inet:ip_address())
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/src/ssl_connection.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.hrl b/lib/ssl/src/ssl_connection.hrl index 27489ca325..adb2e1debe 100644 --- a/lib/ssl/src/ssl_connection.hrl +++ b/lib/ssl/src/ssl_connection.hrl @@ -41,7 +41,7 @@ data_tag :: atom(), % ex tcp. close_tag :: atom(), % ex tcp_closed error_tag :: atom(), % ex tcp_error - host :: string() | inet:ipaddress(), + host :: string() | inet:ip_address(), port :: integer(), socket :: port(), ssl_options :: #ssl_options{}, |