aboutsummaryrefslogtreecommitdiffstats
path: root/util-src
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-04-24 16:16:19 +0200
committerKim Alvefur <zash@zash.se>2019-04-24 16:16:19 +0200
commitc42a786ec79fcfe936a3dccde9d0cdf70d6255b0 (patch)
treebcc3530945158431080e869c16f2a594d2175804 /util-src
parentcore.portmanager: Log debug message for each kind of TLS context created (diff)
downloadprosody-c42a786ec79fcfe936a3dccde9d0cdf70d6255b0.tar.xz
prosody-c42a786ec79fcfe936a3dccde9d0cdf70d6255b0.zip
util.encodings: Allow unassigned code points in ICU mode to match libidn behavior (fixes #1348)
Diffstat (limited to 'util-src')
-rw-r--r--util-src/encodings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/encodings.c b/util-src/encodings.c
index f7e8131f1..e55a3f440 100644
--- a/util-src/encodings.c
+++ b/util-src/encodings.c
@@ -299,7 +299,7 @@ static int icu_stringprep_prep(lua_State *L, const UStringPrepProfile *profile)
return 1;
}
- prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, 0, NULL, &err);
+ prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, USPREP_ALLOW_UNASSIGNED, NULL, &err);
if(U_FAILURE(err)) {
lua_pushnil(L);