diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-07-27 15:00:58 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-07-27 15:00:58 +0100 |
commit | 69d0c29b3b45e8f3ea698f75ccc7b5dd9e0099f6 (patch) | |
tree | 77d390d23a35a4c45321f1060e5320f776776e8e /src | |
parent | eecbe95ef329cfa1ae341867fcf423de86413bb6 (diff) |
Build: workaround inlining problems on Solaris
Diffstat (limited to 'src')
-rw-r--r-- | src/src/mytypes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/src/mytypes.h b/src/src/mytypes.h index de2371c7d..7d35fe0d8 100644 --- a/src/src/mytypes.h +++ b/src/src/mytypes.h @@ -144,28 +144,28 @@ return p >= tainted_base && p < tainted_top; static inline uschar * __Ustrcat(uschar * dst, const uschar * src, const char * func, int line) { -#ifndef COMPILE_UTILITY +#if !defined(COMPILE_UTILITY) && !defined(MACRO_PREDEF) if (!is_tainted(dst) && is_tainted(src)) die_tainted(US"Ustrcat", CUS func, line); #endif return US strcat(CS dst, CCS src); } static inline uschar * __Ustrcpy(uschar * dst, const uschar * src, const char * func, int line) { -#ifndef COMPILE_UTILITY +#if !defined(COMPILE_UTILITY) && !defined(MACRO_PREDEF) if (!is_tainted(dst) && is_tainted(src)) die_tainted(US"Ustrcpy", CUS func, line); #endif return US strcpy(CS dst, CCS src); } static inline uschar * __Ustrncat(uschar * dst, const uschar * src, size_t n, const char * func, int line) { -#ifndef COMPILE_UTILITY +#if !defined(COMPILE_UTILITY) && !defined(MACRO_PREDEF) if (!is_tainted(dst) && is_tainted(src)) die_tainted(US"Ustrncat", CUS func, line); #endif return US strncat(CS dst, CCS src, n); } static inline uschar * __Ustrncpy(uschar * dst, const uschar * src, size_t n, const char * func, int line) { -#ifndef COMPILE_UTILITY +#if !defined(COMPILE_UTILITY) && !defined(MACRO_PREDEF) if (!is_tainted(dst) && is_tainted(src)) die_tainted(US"Ustrncpy", CUS func, line); #endif return US strncpy(CS dst, CCS src, n); |