You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-overlay/profiles/patches/net-im/ejabberd-2.1.5-mod_vcard_ld...

15 lines
379 B

diff --git a/src/eldap/eldap_filter.erl b/src/eldap/eldap_filter.erl
index 51dac5e..341fba1 100644
--- a/src/eldap/eldap_filter.erl
+++ b/src/eldap/eldap_filter.erl
@@ -171,7 +171,7 @@ do_sub(S, {RegExp, New, Times}, Iter) ->
end.
replace_amps(String) ->
- lists:map(
+ lists:flatmap(
fun($&) -> "\\&";
- (Chr) -> Chr
+ (Chr) -> [Chr]
end, String).