diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-20 13:25:21 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-20 13:25:21 +0300 |
commit | 509fbd91ed545d05cc266a80ec19fe7b9c9d28db (patch) | |
tree | 09c2d97d212c0820f6d5e85d7e583b8a56b26ef8 /protocols/EmLanProto/src | |
parent | c90b4443c10b08eeae9466428255fe8ff7b48d6d (diff) |
we don't need two name sets for the same array of functions
Diffstat (limited to 'protocols/EmLanProto/src')
-rw-r--r-- | protocols/EmLanProto/src/mlan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/EmLanProto/src/mlan.cpp b/protocols/EmLanProto/src/mlan.cpp index 948f011e52..639bb0a0e9 100644 --- a/protocols/EmLanProto/src/mlan.cpp +++ b/protocols/EmLanProto/src/mlan.cpp @@ -369,7 +369,7 @@ void CMLan::RecvMessageUrl(CCSDATA* ccs) if (Utf8CheckString(pre->szMessage)) szMessage = mir_strdup(pre->szMessage); else - szMessage = Utf8Encode(pre->szMessage); + szMessage = mir_utf8encode(pre->szMessage); DBEVENTINFO dbei = {}; if (!mir_strcmp(ccs->szProtoService, PSR_MESSAGE)) |