Skip to content

Commit b796bd6

Browse files
committed
fix prototypes in documentation to match actual const-ness
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105631 13f79535-47bb-0310-9956-ffa450edef68
1 parent 42ae628 commit b796bd6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/http_log.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ AP_DECLARE(void) ap_log_perror(const char *file, int line, int level,
197197
* denial-of-service attack and other messy behavior. Instead, use a
198198
* simple format string like "%s", followed by the string containing the
199199
* untrusted data.
200-
* @deffunc void ap_log_rerror(const char *file, int line, int level, apr_status_t status, request_rec *r, const char *fmt, ...)
200+
* @deffunc void ap_log_rerror(const char *file, int line, int level, apr_status_t status, const request_rec *r, const char *fmt, ...)
201201
*/
202202
AP_DECLARE(void) ap_log_rerror(const char *file, int line, int level,
203203
apr_status_t status, const request_rec *r,
@@ -224,7 +224,7 @@ AP_DECLARE(void) ap_log_rerror(const char *file, int line, int level,
224224
* denial-of-service attack and other messy behavior. Instead, use a
225225
* simple format string like "%s", followed by the string containing the
226226
* untrusted data.
227-
* @deffunc void ap_log_cerror(const char *file, int line, int level, apr_status_t status, conn_rec *c, const char *fmt, ...)
227+
* @deffunc void ap_log_cerror(const char *file, int line, int level, apr_status_t status, const conn_rec *c, const char *fmt, ...)
228228
*/
229229
AP_DECLARE(void) ap_log_cerror(const char *file, int line, int level,
230230
apr_status_t status, const conn_rec *c,

0 commit comments

Comments
 (0)