* 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:
Badlop
2007-12-15 13:01:32 +00:00
parent 090fceebc2
commit 2b91ebcc85
4 changed files with 11 additions and 11 deletions
+2 -3
View File
@@ -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}.