-*- coding: utf-8 -*-
Changes with Apache 2.4.40
+ *) mod_info: Fix output of server settings for PIPE_BUF in mod_info in
+ the rare case that PIPE_BUF is defined. [Rainer Jung]
+
*) mod_md: Store permissions are enforced on file creation, enforcing restrictions in
spite of umask. Fixes <https://github.com/icing/mod_md/issues/117>. [Stefan Eissing]
2.4.x patch: svn merge -c 1857129,1857130 ^/httpd/httpd/trunk .
+1: ylavic, rpluem, jim
- *) mod_info: Fix wrong use of ap_rputs with formats.
- Use ap_rprintf instead.
- It seems noone has PIPE_BUF defined.
- trunk patch: http://svn.apache.org/r1857515
- 2.4.x patch: svn merge -c 1857515 ^/httpd/httpd/trunk .
- +1: rjung, jailletc36, jim
-
*) mod_status: PR60647: ACC per connection not available w/ event MPM
trunk patch: http://svn.apache.org/r1780280
2.4.x patch: svn merge -c 1780280 ^/httpd/httpd/trunk .
#ifdef BUFFERED_LOGS
ap_rputs(" -D BUFFERED_LOGS\n", r);
#ifdef PIPE_BUF
- ap_rputs(" -D PIPE_BUF=%ld\n", (long) PIPE_BUF, r);
+ ap_rprintf(r, " -D PIPE_BUF=%ld\n", (long) PIPE_BUF);
#endif
#endif