*) mpm_event: Allow for timer events duplicates.
trunk patch: http://svn.apache.org/r1666468
http://svn.apache.org/r1666618
- 2.4.x patch: http://people.apache.org/~ylavic/httpd-2.4.x-event_timers_duplicates.patch
+ http://svn.apache.org/r1674697
+ 2.4.x patch: http://people.apache.org/~ylavic/httpd-2.4.x-event_timers_duplicates-v2.patch
+1: ylavic, covener
covener: what's the background here? What's currently broken?
ylavic: I expected to find a common compare function for both MPMs event
same apr_time_t because the compare function would return 0 and insert_compare
wouldn't let the duplicate in. post-patch, only two timer_event_t's with the same
address are equals.
+ ylavic: r1674697 (and v2) removes the debugging checks (not necessary in 2.4.x IMHO),
+ and add a comment about the compare function. As Eric explained above, the real
+ point is to return +1 instead of 0 there, so that duplicates are added after
+ each other (by order of insertion).
*) mod_authz_core: Allow "Require expr" to work when the expression is quoted,
as in an example in the doc. PR 56235