Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xmpp_codec.spec')
-rw-r--r--tools/xmpp_codec.spec6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/xmpp_codec.spec b/tools/xmpp_codec.spec
index 38508ce6c..8d087c8b6 100644
--- a/tools/xmpp_codec.spec
+++ b/tools/xmpp_codec.spec
@@ -2421,7 +2421,7 @@ enc_utc(Val) ->
jlib:now_to_utc_string(Val).
dec_jid(Val) ->
- case jlib:string_to_jid(Val) of
+ case jid:from_string(Val) of
error ->
erlang:error(badarg);
J ->
@@ -2429,10 +2429,10 @@ dec_jid(Val) ->
end.
enc_jid(J) ->
- jlib:jid_to_string(J).
+ jid:to_string(J).
resourceprep(R) ->
- case jlib:resourceprep(R) of
+ case jid:resourceprep(R) of
error ->
erlang:error(badarg);
R1 ->