> -----Original Message----- > From: i...@apache.org [mailto:i...@apache.org] > Sent: woensdag 3 juni 2015 18:31 > To: comm...@subversion.apache.org > Subject: svn commit: r1683387 - > /subversion/trunk/subversion/mod_dav_svn/status.c > > Author: ivan > Date: Wed Jun 3 16:31:08 2015 > New Revision: 1683387 > > URL: http://svn.apache.org/r1683387 > Log: > Fix abort() in svn-status handler on platforms that doesn't support C99 > format specifiers for strftime(): %F and %z are new in C99 and C89 > compiler/runtime doesn't support them [1]: > [[[ > Those listed here are supported by the latest C and C++ standards (both > published in 2011), but those in yellow were introduced in C99 (only > required for C++ implementations since C++11), and may not be supported by > libraries that comply with older standards. > ]]] > > [1] http://www.cplusplus.com/reference/ctime/strftime/ > > * subversion/mod_dav_svn/status.c > (DEFAULT_TIME_FORMAT): Use '%Y-%m-%d' instead of '%F' and '%Z instead > of > '%z'.
+1 on the %F part. Good catch! %z and %Z are handled in ap_ht_time(), so I don't think a change is necessary there. Either should work on all platforms. Bert