[Remove entries to the current 2.0 section below, when backported]
+ *) mod_ldap: Fix format strings to use %APR_PID_T_FMT instead of %d.
+ [Jeff Trawick]
+
*) mod_rewrite: Removed the MaxRedirects option in favor of the
core LimitInternalRecursion directive. [André Malo]
sts = apr_global_mutex_child_init(&st->util_ldap_cache_lock, st->lock_file, p);
if (sts != APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_CRIT, sts, s,
- "Failed to initialise global mutex %s in child process %d.",
+ "Failed to initialise global mutex %s in child process %"
+ APR_PID_T_FMT
+ ".",
st->lock_file, getpid());
return;
}
else {
ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, s,
- "Initialisation of global mutex %s in child process %d successful.",
+ "Initialisation of global mutex %s in child process %"
+ APR_PID_T_FMT
+ " successful.",
st->lock_file, getpid());
}
}