]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Use 'ap_cstr_casecmp' to simplify code.
authorChristophe Jaillet <jailletc36@apache.org>
Tue, 21 Mar 2017 23:08:27 +0000 (23:08 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Tue, 21 Mar 2017 23:08:27 +0000 (23:08 +0000)
Remove useless case. We know that to can not be NULL at this point.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1788033 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_autoindex.c

index 9473a87e4d4b7db4c3a66d630edfe859919a12e1..6a32de803d258aeb859227e35a84991a2257a8d2 100644 (file)
@@ -156,9 +156,9 @@ static char c_by_encoding, c_by_type, c_by_path;
 static APR_INLINE int response_is_html(request_rec *r)
 {
     char *ctype = ap_field_noparam(r->pool, r->content_type);
-    ap_str_tolower(ctype);
-    return !strcmp(ctype, "text/html")
-        || !strcmp(ctype, "application/xhtml+xml");
+
+    return !ap_cstr_casecmp(ctype, "text/html")
+        || !ap_cstr_casecmp(ctype, "application/xhtml+xml");
 }
 
 /*
@@ -214,11 +214,8 @@ static void push_item(apr_array_header_t *arr, char *type, const char *to,
     if ((type == BY_PATH) && (!ap_is_matchexp(to))) {
         p->apply_to = apr_pstrcat(arr->pool, "*", to, NULL);
     }
-    else if (to) {
-        p->apply_to = apr_pstrdup(arr->pool, to);
-    }
     else {
-        p->apply_to = NULL;
+        p->apply_to = apr_pstrdup(arr->pool, to);
     }
 }