From: William A. Rowe Jr Date: Mon, 6 Aug 2001 19:09:08 +0000 (+0000) Subject: Fix typo from extracting the fast-redirect code X-Git-Tag: 2.0.23~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=347b03449dd5844de3c9032c1a9dff1102abe311;p=apache Fix typo from extracting the fast-redirect code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89947 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_negotiation.c b/modules/mappers/mod_negotiation.c index 9d162a7e5b..3684937be8 100644 --- a/modules/mappers/mod_negotiation.c +++ b/modules/mappers/mod_negotiation.c @@ -2709,7 +2709,7 @@ static int handle_multi(request_rec *r) avail_recs = (var_rec *) neg->avail_vars->elts; for (j = 0; j < neg->avail_vars->nelts; ++j) { var_rec *variant = &avail_recs[j]; - if (variant != best && variant->rr) { + if (variant != best && variant->sub_req) { ap_destroy_sub_req(variant->sub_req); } }