mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Use new ap_casecmpstr[n]() functions where appropriate (not exhaustive).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715876 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -78,7 +78,7 @@ static void discard_script_output(apr_bucket_brigade *bb);
|
||||
static int is_scriptaliased(request_rec *r)
|
||||
{
|
||||
const char *t = apr_table_get(r->notes, "alias-forced-type");
|
||||
return t && (!strcasecmp(t, "cgi-script"));
|
||||
return t && (!ap_casecmpstr(t, "cgi-script"));
|
||||
}
|
||||
|
||||
/* Configuration stuff */
|
||||
|
Reference in New Issue
Block a user