Le 20/04/2014 08:52, Marion & Christophe JAILLET a écrit :
Hi,
The description and the CHANGES are about AH00784 but the patch is
only about adding 'status' to AH00783.
- else if (APR_EEXIST == status) {
+ else if (APR_STATUS_IS_EEXIST(status)) {
seems not to change anything.
#define APR_STATUS_IS_EEXIST(s) ((s) == APR_EEXIST)
Oops, just forget my comment.
I based it on on-line APR doc
(http://apr.apache.org/docs/apr/1.5/group___a_p_r___s_t_a_t_u_s___i_s.html).
APR_STATUS_IS_EEXIST is more subtle than that.
Sorry for the noise.
CJ