brianp 01/12/07 18:04:51 Modified: modules/http mod_mime.c Log: [indentation fixes only] Revision Changes Path 1.76 +10 -10 httpd-2.0/modules/http/mod_mime.c Index: mod_mime.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/http/mod_mime.c,v retrieving revision 1.75 retrieving revision 1.76 diff -u -r1.75 -r1.76 --- mod_mime.c 2001/12/08 02:00:42 1.75 +++ mod_mime.c 2001/12/08 02:04:51 1.76 @@ -560,11 +560,11 @@ 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 @@ 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);