From: Brian Pane Date: Sat, 8 Dec 2001 02:04:51 +0000 (+0000) Subject: [indentation fixes only] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d7db91561fe69563490cdb8e37fb291ed669c4c;p=apache [indentation fixes only] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92389 13f79535-47bb-0310-9956-ffa450edef68 --- 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);