]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Return "1" to apr_table_do()
authorBill Stoddard <stoddard@apache.org>
Fri, 1 Jun 2001 19:34:23 +0000 (19:34 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 1 Jun 2001 19:34:23 +0000 (19:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89254 13f79535-47bb-0310-9956-ffa450edef68

modules/metadata/mod_headers.c

index c87747b97400cd20ff92a1293ff39b5cdade362d..9ebf415c60fa754d970759e72f6cd6516370b9be 100644 (file)
@@ -271,7 +271,7 @@ static int echo_header(echo_do *v, const char *key, const char *val)
         apr_table_addn(v->r->headers_out, key, val);
     }
     
-    return 0;
+    return 1;
 }
 
 static void do_headers_fixup(request_rec *r, hdr_inout inout,