thx sf
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1206788 13f79535-47bb-0310-9956-
ffa450edef68
va_start(ap, fmt);
res = apr_pvsprintf(r->pool, fmt, ap);
va_end(ap);
- /*
- * Why the NULL?
- * handle: "error: format not a string literal and no format arguments"
- */
- ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, res, NULL);
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, "%s", res);
}
return HTTP_INTERNAL_SERVER_ERROR;
}