From: Brian Pane Date: Sat, 8 Dec 2001 02:04:51 +0000 (+0000) Subject: [indentation fixes only] X-Git-Tag: 2.0.30~247 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e75e8b52ef99e073241cd9c62d93a9bc4777b5c;p=thirdparty%2Fapache%2Fhttpd.git [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 932eb484a26..0e4fa384e2e 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);