You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2011/08/28 19:09:38 UTC

svn commit: r1162558 - /httpd/httpd/trunk/modules/http/byterange_filter.c

Author: rpluem
Date: Sun Aug 28 17:09:38 2011
New Revision: 1162558

URL: http://svn.apache.org/viewvc?rev=1162558&view=rev
Log:
* More style police. No functional changes

Modified:
    httpd/httpd/trunk/modules/http/byterange_filter.c

Modified: httpd/httpd/trunk/modules/http/byterange_filter.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/byterange_filter.c?rev=1162558&r1=1162557&r2=1162558&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/byterange_filter.c (original)
+++ httpd/httpd/trunk/modules/http/byterange_filter.c Sun Aug 28 17:09:38 2011
@@ -433,7 +433,8 @@ static int ap_set_byterange(request_rec 
         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 
        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 
 
     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;