summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2015-10-06 03:37:54 +0200
committerEric Covener <covener@apache.org>2015-10-06 03:37:54 +0200
commite6e113cc6fee4f0e7c1d5e5d5f47943befc04296 (patch)
treee0d68509dca36cde6480c412dd312704bd96b554 /include
parentm4: please any autoconf by quoting AC_DEFUN's names. PR 58126. (diff)
downloadapache2-e6e113cc6fee4f0e7c1d5e5d5f47943befc04296.tar.xz
apache2-e6e113cc6fee4f0e7c1d5e5d5f47943befc04296.zip
fix parameter name in ap_log_rdata C99 macro def.
Via PR57045 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1706942 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/http_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_log.h b/include/http_log.h
index e82389bece..29a60359a9 100644
--- a/include/http_log.h
+++ b/include/http_log.h
@@ -634,7 +634,7 @@ AP_DECLARE(void) ap_log_rdata(const char *file, int line, int module_index,
#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)