* src/mod_irc/iconv.erl: Changed order of handle_info
clause (EJAB-290) * src/stringprep/stringprep.erl: Likesise * src/eldap/eldap.erl: Removed handle_sync_event clause because it is never called (EJAB-290) SVN Revision: 1072
This commit is contained in:
@@ -57,11 +57,10 @@ handle_call(_, _, State) ->
|
||||
handle_cast(_, State) ->
|
||||
{noreply, State}.
|
||||
|
||||
handle_info({'EXIT', Port, Reason}, Port) ->
|
||||
{stop, {port_died, Reason}, Port};
|
||||
handle_info({'EXIT', _Pid, _Reason}, Port) ->
|
||||
{noreply, Port};
|
||||
%% TODO: Check if this clase is correct: it never matches:
|
||||
%%handle_info({'EXIT', Port, Reason}, Port) ->
|
||||
%% {stop, {port_died, Reason}, Port};
|
||||
handle_info(_, State) ->
|
||||
{noreply, State}.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user