diff options
author | Stefan Fritsch <sf@apache.org> | 2011-07-16 23:53:18 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-07-16 23:53:18 +0200 |
commit | beb3ea9c11ef0fb6396403120f29d9ab2cae3215 (patch) | |
tree | 6d5994e64b06a8a5292c1e69f893bde01470211c /modules/arch | |
parent | improve readability of 'malformed header from script' message and simplify code (diff) | |
download | apache2-beb3ea9c11ef0fb6396403120f29d9ab2cae3215.tar.xz apache2-beb3ea9c11ef0fb6396403120f29d9ab2cae3215.zip |
Add more (trace) logging to the ap_scan_script_header*() functions
Add ap_scan_script_header*_ex() functions that take a module index for
logging.
Make mod_cgi, mod_cgid, mod_proxy_fcgi, mod_proxy_scgi, mod_isapi use the
new functions.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1147493 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/arch')
-rw-r--r-- | modules/arch/win32/mod_isapi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/arch/win32/mod_isapi.c b/modules/arch/win32/mod_isapi.c index 682bd6411d..71a2881ae2 100644 --- a/modules/arch/win32/mod_isapi.c +++ b/modules/arch/win32/mod_isapi.c @@ -714,12 +714,12 @@ static apr_ssize_t send_response_header(isapi_cid *cid, old_status = cid->r->status; if (stat) { - res = ap_scan_script_header_err_strs(cid->r, NULL, &termch, &termarg, - stat, head, NULL); + res = ap_scan_script_header_err_strs_ex(cid->r, NULL, + APLOG_MODULE_INDEX, &termch, &termarg, stat, head, NULL); } else { - res = ap_scan_script_header_err_strs(cid->r, NULL, &termch, &termarg, - head, NULL); + res = ap_scan_script_header_err_strs_ex(cid->r, NULL, + APLOG_MODULE_INDEX, &termch, &termarg, head, NULL); } /* Set our status. */ |