From: Doug MacEachern Date: Thu, 3 May 2001 23:39:43 +0000 (+0000) Subject: another nit caught by C::Scan: change request_rec param name from 's' to 'r' in ap_lo... X-Git-Tag: 2.0.18~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84714e4b1d1f76fd74302576228621b1c750dd7f;p=apache 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 --- 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)));