PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * core: Fix C99 macro for ap_log_rdata, see comment #8 in PR57045
- trunk patch: http://svn.apache.org/r1706942
- 2.4.x patch: trunk works
- +1 covener, trawick, ylavic
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
#ifdef AP_HAVE_C99
/* need additional step to expand APLOG_MARK first */
#define ap_log_rdata(...) ap_log_rdata__(__VA_ARGS__)
-#define ap_log_rdata__(file, line, mi, level, s, ...) \
+#define ap_log_rdata__(file, line, mi, level, r, ...) \
do { if (APLOG_R_MODULE_IS_LEVEL(r, mi, level)) \
ap_log_rdata_(file, line, mi, level, r, __VA_ARGS__); \
} while(0)