summaryrefslogtreecommitdiff
path: root/libmu_sieve/sieve.l
diff options
context:
space:
mode:
Diffstat (limited to 'libmu_sieve/sieve.l')
-rw-r--r--libmu_sieve/sieve.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmu_sieve/sieve.l b/libmu_sieve/sieve.l
index 2f60e1384..27a92d42e 100644
--- a/libmu_sieve/sieve.l
+++ b/libmu_sieve/sieve.l
@@ -31,7 +31,7 @@
#include <errno.h>
#include <string.h>
#include <mailutils/cctype.h>
-#include <mailutils/argcv.h>
+#include <mailutils/wordsplit.h>
#include <sieve-priv.h>
#include <sieve-gram.h>
@@ -640,7 +640,7 @@ str_unescape (char *text, size_t len)
{
char *str = mu_sieve_alloc (len);
memcpy (str, text, len - 2);
- str[len - 2] = mu_argcv_unquote_char (text[len - 1]);
+ str[len - 2] = mu_wordsplit_c_unquote_char (text[len - 1]);
str[len - 1] = 0;
return str;
}

Return to:

Send suggestions and report system problems to the System administrator.