You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2015/12/21 16:20:20 UTC

svn commit: r1721189 - /httpd/httpd/trunk/modules/http2/mod_http2.c

Author: icing
Date: Mon Dec 21 15:20:20 2015
New Revision: 1721189

URL: http://svn.apache.org/viewvc?rev=1721189&view=rev
Log:
gack, c99 mode stroke again

Modified:
    httpd/httpd/trunk/modules/http2/mod_http2.c

Modified: httpd/httpd/trunk/modules/http2/mod_http2.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/mod_http2.c?rev=1721189&r1=1721188&r2=1721189&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/mod_http2.c (original)
+++ httpd/httpd/trunk/modules/http2/mod_http2.c Mon Dec 21 15:20:20 2015
@@ -225,7 +225,9 @@ static int h2_h2_fixups(request_rec *r)
 {
     if (r->connection->master) {
         h2_ctx *ctx = h2_ctx_rget(r);
-        for (int i = 0; ctx && i < H2_ALEN(H2_VARS); ++i) {
+        int i;
+        
+        for (i = 0; ctx && i < H2_ALEN(H2_VARS); ++i) {
             h2_var_def *vdef = &H2_VARS[i];
             if (vdef->subprocess) {
                 apr_table_setn(r->subprocess_env, vdef->name,