]> granicus.if.org Git - apache/commitdiff
[indentation fixes only]
authorBrian Pane <brianp@apache.org>
Sat, 8 Dec 2001 02:04:51 +0000 (02:04 +0000)
committerBrian Pane <brianp@apache.org>
Sat, 8 Dec 2001 02:04:51 +0000 (02:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92389 13f79535-47bb-0310-9956-ffa450edef68

modules/http/mod_mime.c

index 932eb484a262b31bc706df88b8ec580314b6afc8..0e4fa384e2e69e925887a0a9ece67e082ef8f8e6 100644 (file)
@@ -560,11 +560,11 @@ static content_type *analyze_ct(request_rec *r, const char *s)
        return (NULL);
     }
     for (tmp = ctp->type; *tmp; tmp++) {
-      if ((*tmp == ';') || (*tmp == ' ') || (*tmp == '\t')) {
-       ap_log_error(APLOG_MARK, APLOG_WARNING, 0, ss,
-                    "Cannot get media subtype.");
-       return (NULL);
-      }
+        if ((*tmp == ';') || (*tmp == ' ') || (*tmp == '\t')) {
+            ap_log_error(APLOG_MARK, APLOG_WARNING, 0, ss,
+                         "Cannot get media subtype.");
+            return (NULL);
+        }
     }
 
     /* getting a subtype */
@@ -580,11 +580,11 @@ static content_type *analyze_ct(request_rec *r, const char *s)
        return (NULL);
     }
     for (tmp = ctp->subtype; *tmp; tmp++) {
-      if ((*tmp == ' ') || (*tmp == '\t')) {
-       ap_log_error(APLOG_MARK, APLOG_WARNING, 0, ss,
-                    "Cannot get media subtype.");
-       return (NULL);
-      }
+        if ((*tmp == ' ') || (*tmp == '\t')) {
+            ap_log_error(APLOG_MARK, APLOG_WARNING, 0, ss,
+                         "Cannot get media subtype.");
+            return (NULL);
+        }
     }
     if (*cp == '\0') {
         return (ctp);