PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) modules/ssl/ssl_engine_vars.c (ssl_var_lookup_ssl_cert_remain):
- Fix off-by-one in tm_mday calculation, identified by Gemini.
- trunk patch: https://svn.apache.org/1931420
- 2.4.x patch: svn merge -c 1931420 ^/httpd/httpd/trunk .
- +1: rjung, jorton, jim
-
*) Constify static arrays of string constants.
trunk patch: https://svn.apache.org/r1933659
2.4.x patch: svn merge -c 1933659 ^/httpd/httpd/trunk .
}
exp.tm_mon = DIGIT2NUM(dp) - 1;
- exp.tm_mday = DIGIT2NUM(dp + 2) + 1;
+ exp.tm_mday = DIGIT2NUM(dp + 2);
exp.tm_hour = DIGIT2NUM(dp + 4);
exp.tm_min = DIGIT2NUM(dp + 6);
exp.tm_sec = DIGIT2NUM(dp + 8);