dropping apr_array_clear. The dependency was
introduced by a backport in 2.2.22.
Submitted by: covener
Reviewed by: rjung, trawick
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@
1445101 13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
Changes with Apache 2.2.24
+ *) core: Remove unintentional APR 1.3 dependency introduced with
+ Apache 2.2.22. [Eric Covener]
+
*) core: Use a TLS 1.0 close_notify alert for internal dummy connection if
the chosen listener is configured for https. [Joe Orton]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * byterange filter: Remove apr 1.3 dependency by dropping apr_array_clear
- trunk patch: n/a
- 2.4.x patch: n/a
- 2.2.x patch: http://people.apache.org/~covener/patches/2.2.x-byterange-table_clear.diff
- +1: covener, rjung, trawick
-
* mod_cache: Allow providers to decide whether to cache responses with code
206.
Trunk version of patch:
* return as a single range: 0-
*/
if (start == 0) {
- apr_array_clear(*indexes);
+ (*indexes)->nelts = 0;
idx = (indexes_t *)apr_array_push(*indexes);
idx->start = start;
idx->end = end;