diff options
author | Ingela Anderton Andin <[email protected]> | 2011-02-22 16:01:35 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-02-22 16:01:35 +0100 |
commit | fa2d70cc03578d80d67e099ffd47f73c39c2cdad (patch) | |
tree | 8d1f6fdd1dbc245c55c6dd3496bddc498bb1da8c /lib/ssl/src/inet_ssl_dist.erl | |
parent | b0d6abb72cf32df548703b284b737a4a7c0a9d8a (diff) | |
download | otp-fa2d70cc03578d80d67e099ffd47f73c39c2cdad.tar.gz otp-fa2d70cc03578d80d67e099ffd47f73c39c2cdad.tar.bz2 otp-fa2d70cc03578d80d67e099ffd47f73c39c2cdad.zip |
Modernized some dialyzer specs
Diffstat (limited to 'lib/ssl/src/inet_ssl_dist.erl')
-rw-r--r-- | lib/ssl/src/inet_ssl_dist.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/inet_ssl_dist.erl b/lib/ssl/src/inet_ssl_dist.erl index b10aa76246..249097c162 100644 --- a/lib/ssl/src/inet_ssl_dist.erl +++ b/lib/ssl/src/inet_ssl_dist.erl @@ -137,7 +137,7 @@ accept_connection(AcceptPid, Socket, MyNode, Allowed, SetupTime) -> %% Suppress dialyzer warning, we do not really care about old ssl code %% as we intend to remove it. --spec(do_accept/6 :: (_,_,_,_,_,_) -> no_return()). +-spec(do_accept(_,_,_,_,_,_) -> no_return()). do_accept(Kernel, AcceptPid, Socket, MyNode, Allowed, SetupTime) -> process_flag(priority, max), receive @@ -209,7 +209,7 @@ setup(Node, Type, MyNode, LongOrShortNames,SetupTime) -> %% Suppress dialyzer warning, we do not really care about old ssl code %% as we intend to remove it. --spec(do_setup/6 :: (_,_,_,_,_,_) -> no_return()). +-spec(do_setup(_,_,_,_,_,_) -> no_return()). do_setup(Kernel, Node, Type, MyNode, LongOrShortNames,SetupTime) -> process_flag(priority, max), ?trace("~p~n",[{inet_ssl_dist,self(),setup,Node}]), |