--- 9.2.0rc5 released ---
+1021. [bug] On Win32, log message timestamps were one month
+ later than they should have been, and the server
+ would exhibit unspecified behavior in December.
+
1020. [bug] IXFR log messages did not distinguish between
true IXFRs, AXFR-style IXFRs, and mere version
polls. [RT #1811]
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: time.c,v 1.24.2.2 2001/09/05 17:32:05 gson Exp $ */
+/* $Id: time.c,v 1.24.2.3 2001/10/01 01:42:38 gson Exp $ */
#include <config.h>
FileTimeToSystemTime(&localft, &st))
{
snprintf(buf, len, "%s %2u %02u:%02u:%02u.%03u",
- months[st.wMonth], st.wDay, st.wHour, st.wMinute,
+ months[st.wMonth - 1], st.wDay, st.wHour, st.wMinute,
st.wSecond, st.wMilliseconds);
} else {
snprintf(buf, len, badtime);