diff options
author | Ingela Anderton Andin <[email protected]> | 2011-02-22 17:45:43 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-02-22 17:45:43 +0100 |
commit | afdb6f011baedffb7290dd7b689a88af015e8b37 (patch) | |
tree | 4c3fa468613f686debfb18363c37b83bb953f0e6 /lib | |
parent | d9ebfb8576027d384ee6b8bb3460c14560abab12 (diff) | |
download | otp-afdb6f011baedffb7290dd7b689a88af015e8b37.tar.gz otp-afdb6f011baedffb7290dd7b689a88af015e8b37.tar.bz2 otp-afdb6f011baedffb7290dd7b689a88af015e8b37.zip |
Dialyzer does not like old fun syntax
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/src/inet_ssl_dist.erl | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/lib/ssl/src/inet_ssl_dist.erl b/lib/ssl/src/inet_ssl_dist.erl index 249097c162..6c0fbc0618 100644 --- a/lib/ssl/src/inet_ssl_dist.erl +++ b/lib/ssl/src/inet_ssl_dist.erl @@ -1,8 +1,8 @@ -%%<copyright> -%% <year>2000-2008</year> -%% <holder>Ericsson AB, All Rights Reserved</holder> -%%</copyright> -%%<legalnotice> +%% +%% %CopyrightBegin% +%% +%% Copyright Ericsson AB 2000-2011. All Rights Reserved. +%% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in %% compliance with the License. You should have received a copy of the @@ -14,8 +14,9 @@ %% the License for the specific language governing rights and limitations %% under the License. %% -%% The Initial Developer of the Original Code is Ericsson AB. -%%</legalnotice> +%% %CopyrightEnd% +%% + %% -module(inet_ssl_dist). @@ -170,8 +171,8 @@ do_accept(Kernel, AcceptPid, Socket, MyNode, Allowed, SetupTime) -> ssl_prim:getll(S) end, f_address = fun get_remote_id/2, - mf_tick = {?MODULE, tick}, - mf_getstat = {?MODULE,getstat} + mf_tick = fun ?MODULE:tick/1, + mf_getstat = fun ?MODULE:getstat/1 }, dist_util:handshake_other_started(HSData); {false,IP} -> @@ -264,8 +265,8 @@ do_setup(Kernel, Node, Type, MyNode, LongOrShortNames,SetupTime) -> protocol = ssl, family = inet} end, - mf_tick = {?MODULE, tick}, - mf_getstat = {?MODULE,getstat}, + mf_tick = fun ?MODULE:tick/1, + mf_getstat = fun ?MODULE:getstat/1, request_type = Type }, dist_util:handshake_we_started(HSData); |