summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-05-04 01:39:43 +0200
committerDoug MacEachern <dougm@apache.org>2001-05-04 01:39:43 +0200
commit84714e4b1d1f76fd74302576228621b1c750dd7f (patch)
treeb19fbd214c4a4aec3736df6cc7ec111537908ced /include
parentConversion to XHTML. (diff)
downloadapache2-84714e4b1d1f76fd74302576228621b1c750dd7f.tar.xz
apache2-84714e4b1d1f76fd74302576228621b1c750dd7f.zip
another nit caught by C::Scan: change request_rec param name from 's' to 'r' in ap_log_rerror()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88983 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/http_log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_log.h b/include/http_log.h
index ed610ae286..71d50a3e50 100644
--- a/include/http_log.h
+++ b/include/http_log.h
@@ -201,10 +201,10 @@ AP_DECLARE(void) ap_log_perror(const char *file, int line, int level,
* denial-of-service attack and other messy behavior. Instead, use a
* simple format string like "%s", followed by the string containing the
* untrusted data.
- * @deffunc void ap_log_rerror(const char *file, int line, int level, apr_status_t status, request_rec *s, const char *fmt, ...)
+ * @deffunc void ap_log_rerror(const char *file, int line, int level, apr_status_t status, request_rec *r, const char *fmt, ...)
*/
AP_DECLARE(void) ap_log_rerror(const char *file, int line, int level,
- apr_status_t status, const request_rec *s,
+ apr_status_t status, const request_rec *r,
const char *fmt, ...)
__attribute__((format(printf,6,7)));