Commit 6c061f96 authored by Bill Stoddard's avatar Bill Stoddard
Browse files

Return "1" to apr_table_do()


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89254 13f79535-47bb-0310-9956-ffa450edef68
parent eeaf6dcd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,