aboutsummaryrefslogtreecommitdiff
path: root/src/stringprep/stringprep.erl
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2007-12-07 00:48:11 +0000
committerBadlop <badlop@process-one.net>2007-12-07 00:48:11 +0000
commit95c69b025108b9448af7ded760a57a7df9f2b21b (patch)
tree109bc152f510fe739ff06d6932d3a413d66f0d2e /src/stringprep/stringprep.erl
parent* src/mod_caps.erl: Fix compilation warnings: Part 2 (EJAB-290) (diff)
* src/mod_irc/iconv.erl: Fix compilation warnings: 3 (EJAB-290)
* src/mod_irc/mod_irc.erl: Likewise * src/mod_irc/mod_irc_connection.erl: Likewise * src/mod_pubsub/mod_pubsub.erl: Likewise * src/stringprep/stringprep.erl: Likewise * src/web/ejabberd_http.erl: Likewise * src/web/ejabberd_http_poll.erl: Likewise SVN Revision: 1047
Diffstat (limited to '')
-rw-r--r--src/stringprep/stringprep.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stringprep/stringprep.erl b/src/stringprep/stringprep.erl
index 31e3ef485..981dcdf61 100644
--- a/src/stringprep/stringprep.erl
+++ b/src/stringprep/stringprep.erl
@@ -57,15 +57,15 @@ handle_call(_, _, State) ->
handle_cast(_, State) ->
{noreply, State}.
-handle_info({'EXIT', Pid, Reason}, Port) ->
+handle_info({'EXIT', _Pid, _Reason}, Port) ->
{noreply, Port};
-
-handle_info({'EXIT', Port, Reason}, Port) ->
- {stop, {port_died, Reason}, 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}.
-code_change(OldVsn, State, Extra) ->
+code_change(_OldVsn, State, _Extra) ->
{ok, State}.
terminate(_Reason, Port) ->