]> granicus.if.org Git - apache/commitdiff
gack, c99 mode stroke again
authorStefan Eissing <icing@apache.org>
Mon, 21 Dec 2015 15:20:55 +0000 (15:20 +0000)
committerStefan Eissing <icing@apache.org>
Mon, 21 Dec 2015 15:20:55 +0000 (15:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721190 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/mod_http2.c

index b58ed1341997445f5a9f326ce35a5c31f90e9ae2..464161f3b35dfdd1ec9e7e055cd7f4aaf70084c7 100644 (file)
@@ -211,8 +211,9 @@ static int http2_is_h2(conn_rec *c)
 static char *http2_var_lookup(apr_pool_t *p, server_rec *s,
                               conn_rec *c, request_rec *r, char *name)
 {
+    int i;
     /* If the # of vars grow, we need to put definitions in a hash */
-    for (int i = 0; i < H2_ALEN(H2_VARS); ++i) {
+    for (i = 0; i < H2_ALEN(H2_VARS); ++i) {
         h2_var_def *vdef = &H2_VARS[i];
         if (!strcmp(vdef->name, name)) {
             return vdef->lookup(p, s, c, r);