]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
backport the last byte of r731963
authorJeff Trawick <trawick@apache.org>
Tue, 6 Jan 2009 20:49:34 +0000 (20:49 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 6 Jan 2009 20:49:34 +0000 (20:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@732113 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_cgid.c

index ca5309ed089276b80fbc7a7d693b03cbe18eef8d..99ae84b5b774316de3d159e228974190b72c0386 100644 (file)
@@ -354,7 +354,7 @@ static apr_status_t sock_writev(int fd, request_rec *r, int count, ...)
 
     vec = (struct iovec *)apr_palloc(r->pool, count * sizeof(struct iovec));
     va_start(ap, count);
-    for(i = 0; i < count; i++) {
+    for (i = 0; i < count; i++) {
         vec[i].iov_base = va_arg(ap, caddr_t);
         vec[i].iov_len  = va_arg(ap, apr_size_t);
         total_bytes += vec[i].iov_len;