From b422d0da0f12bfd6126ac725d9ac1649f877b98b Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 21 Dec 2015 15:20:20 +0000 Subject: [PATCH] gack, c99 mode stroke again git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721189 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/mod_http2.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/http2/mod_http2.c b/modules/http2/mod_http2.c index 8d4cce4346..b58ed13419 100644 --- a/modules/http2/mod_http2.c +++ b/modules/http2/mod_http2.c @@ -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, -- 2.50.1