mirror of
https://gitlab.kit.edu/kit/scc/sys/mail/exim-encrypt-dlfunc.git
synced 2025-12-06 09:43:55 +01:00
cpp: more careful macro expansion
This commit is contained in:
@ -26,11 +26,11 @@
|
||||
*/
|
||||
|
||||
#if LOCAL_SCAN_VERSION < 3
|
||||
#define store_get_untainted(size) store_get(size)
|
||||
#define store_get_tainted(size) store_get(size)
|
||||
#define store_get_untainted(size) (store_get(size))
|
||||
#define store_get_tainted(size) (store_get(size))
|
||||
#elif LOCAL_SCAN_VERSION >= 3
|
||||
#define store_get_untainted(size) store_get(size, FALSE)
|
||||
#define store_get_tainted(size) store_get(size, TRUE)
|
||||
#define store_get_untainted(size) (store_get(size, FALSE))
|
||||
#define store_get_tainted(size) (store_get(size, TRUE))
|
||||
#else
|
||||
#error "exim4 local version"
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user