PASS with the patch as described in
http://mail-archives.apache.org/mod_mbox/subversion-commits/201201.mbox/%3C20120117021721.EB7F42388860@eris.apache.org%3E
Applied in Alien-SVN-v1.7.3.1 as
--8<---
diff -purd a/src/subversion/subversion/mod_dav_svn/util.c b/src/subversion/subversion/mod_dav_svn/util.c
--- a/src/subversion/subversion/mod_dav_svn/util.c 2012-03-18 23:09:42.000000000 +0100
+++ b/src/subversion/subversion/mod_dav_svn/util.c 2014-02-15 15:00:20.917078691 +0100
@@ -624,19 +624,21 @@ void dav_svn__log_err(request_rec *r,
/* Log the errors */
/* ### should have a directive to log the first or all */
for (errscan = err; errscan != NULL; errscan = errscan->prev) {
+ apr_status_t status;
+
if (errscan->desc == NULL)
continue;
- if (errscan->save_errno != 0) {
- errno = errscan->save_errno;
- ap_log_rerror(APLOG_MARK, level, errno, r, "%s [%d, #%d]",
- errscan->desc, errscan->status, errscan->error_id);
- }
- else {
- ap_log_rerror(APLOG_MARK, level, 0, r,
- "%s [%d, #%d]",
- errscan->desc, errscan->status, errscan->error_id);
- }
+#if AP_MODULE_MAGIC_AT_LEAST(20091119,0)
+ status = errscan->aprerr;
+#else
+ status = errscan->save_errno;
+#endif
+
+ ap_log_rerror(APLOG_MARK, level, status, r,
+ "%s [%d, #%d]",
+ errscan->desc, errscan->status, errscan->error_id);
+
}
}
-->8---