]> granicus.if.org Git - apache/commitdiff
another nit caught by C::Scan: change request_rec param name from 's' to 'r' in ap_lo...
authorDoug MacEachern <dougm@apache.org>
Thu, 3 May 2001 23:39:43 +0000 (23:39 +0000)
committerDoug MacEachern <dougm@apache.org>
Thu, 3 May 2001 23:39:43 +0000 (23:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88983 13f79535-47bb-0310-9956-ffa450edef68

include/http_log.h

index ed610ae286dbec7689a9b351b6335936fbc550ce..71d50a3e502ec8af8cfc99c5e01b2686e63ab50a 100644 (file)
@@ -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)));