Commit be2b1881 authored by Doug MacEachern's avatar Doug MacEachern
Browse files

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
parent 4af232de
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)));