From: Ruediger Pluem Date: Sun, 28 Aug 2011 17:09:38 +0000 (+0000) Subject: * More style police. No functional changes X-Git-Tag: 2.3.15~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4de7e4d8e91ec9d7bebb514e647d8ed6333a18b7;p=thirdparty%2Fapache%2Fhttpd.git * More style police. No functional changes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1162558 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 56d5fb71660..92ed6fa6b47 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -433,7 +433,8 @@ static int ap_set_byterange(request_rec *r, apr_off_t clength, return 0; } - /* Check for Range request-header (HTTP/1.1) or Request-Range for + /* + * Check for Range request-header (HTTP/1.1) or Request-Range for * backwards-compatibility with second-draft Luotonen/Franks * byte-ranges (e.g. Netscape Navigator 2-3). * @@ -463,7 +464,8 @@ static int ap_set_byterange(request_rec *r, apr_off_t clength, return 0; } - /* Check the If-Range header for Etag or Date. + /* + * Check the If-Range header for Etag or Date. * Note that this check will return false (as required) if either * of the two etags are weak. */ @@ -482,7 +484,7 @@ static int ap_set_byterange(request_rec *r, apr_off_t clength, range += 6; or = apr_pstrdup(r->pool, range); - merged = apr_array_make(r->pool, 10, sizeof(char *));; + merged = apr_array_make(r->pool, 10, sizeof(char *)); while ((cur = ap_getword(r->pool, &range, ','))) { char *dash; char *errp;