From: Bill Stoddard Date: Fri, 1 Jun 2001 19:34:23 +0000 (+0000) Subject: Return "1" to apr_table_do() X-Git-Tag: 2.0.19~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb2677a9e139385eea19aa76c14247ca22c90279;p=thirdparty%2Fapache%2Fhttpd.git Return "1" to apr_table_do() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89254 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/metadata/mod_headers.c b/modules/metadata/mod_headers.c index c87747b9740..9ebf415c60f 100644 --- a/modules/metadata/mod_headers.c +++ b/modules/metadata/mod_headers.c @@ -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,