-*- coding: utf-8 -*-
Changes with Apache 2.2.1
+ *) Fix mis-shifted 32 bit scope, masked to 64 bits as a method.
+ [Will Rowe, Joe Orton]
+
*) mod_proxy: Fix KeepAlives not being allowed and set to
backend servers. PR38602. [Ruediger Pluem, Jim Jagielski]
+1: rpluem, niq, jerenkrantz
NOTE: this also supersedes previous fix to PR#37790
- * Fix mis-shifted 32 bit scope, masked to 64 bits as a method, with
- improvement (?) suggested by jorton;
- URL: http://people.apache.org/~wrowe/fixldap_mask.patch
- +1: wrowe, pquerna, jim, jorton
-
* mod_ldap: Fix a race condition when creating the connection pool mutex
and make sure that memory is being allocated from the correct pools
when connections are being established. Enforce the GLOBAL_ONLY
/* Loop through the requirements array until there's no elements
* left, or something causes a return from inside the loop */
for(x=0; x < reqs_arr->nelts; x++) {
- if (! (reqs[x].method_mask & (1 << m))) {
+ if (! (reqs[x].method_mask & (AP_METHOD_BIT << m))) {
continue;
}
method_restricted = 1;