summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2019-10-19 19:55:39 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2019-10-19 20:52:36 +0100
commitd48326c00b228279a957da7f58b48a55f4b7823b (patch)
treecd98d2ea7dc863a7d83f613bf66d4c7e5158cfc7
parentf8597898434c2e2f73a66c4161c96db3a5f4137d (diff)
Fix HAVE_LOCAL_SCAN build. Bug 2457
Broken-by: f3ebb786e4
-rw-r--r--src/src/local_scan.h4
-rw-r--r--src/src/string.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/src/src/local_scan.h b/src/src/local_scan.h
index 235812ada..fb878591e 100644
--- a/src/src/local_scan.h
+++ b/src/src/local_scan.h
@@ -199,10 +199,12 @@ we can use an inlined implementation in the compiles of the main Exim files,
with the original name. */
# define string_copy(s) string_copy_function(s)
-# define string_copyn(s, n) string_copyn_function(s, n)
+# define string_copyn(s, n) string_copyn_function((s), (n))
+# define string_copy_taint(s, t) string_copy_taint_function((s), (t))
extern uschar * string_copy_function(const uschar *);
extern uschar * string_copyn_function(const uschar *);
+extern uschar * string_copy_taint_function(const uschar *);
#endif
/* End of local_scan.h */
diff --git a/src/src/string.c b/src/src/string.c
index a95439651..ced1ad8c7 100644
--- a/src/src/string.c
+++ b/src/src/string.c
@@ -411,7 +411,7 @@ return ss;
-#ifdef HAVE_LOCAL_SCAN
+#if defined(HAVE_LOCAL_SCAN) && !defined(MACRO_PREDEF) && !defined(COMPILE_UTILITY)
/*************************************************
* Copy and save string *
*************************************************/
@@ -432,7 +432,7 @@ As above, but explicitly specifying the result taint status
*/
uschar *
-string_copy_taint(const uschar * s, BOOL tainted)
+string_copy_taint_function(const uschar * s, BOOL tainted)
{
int len = Ustrlen(s) + 1;
uschar *ss = store_get(len, tainted);