diff --git a/modules/http/mod_mime.c b/modules/http/mod_mime.c index 932eb484a2..0e4fa384e2 100644 --- a/modules/http/mod_mime.c +++ b/modules/http/mod_mime.c @@ -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);