Bug 522992: NSPR logging timestamp month number is off by one. The patch

is contributed by Hiroyuki Ikezoe <ikezoe@clear-code.com>.  r=wtc.


git-svn-id: svn://10.0.0.236/trunk@258829 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%google.com
2009-10-31 17:24:41 +00:00
parent b8bb2a79b6
commit 4a272e337d

View File

@@ -456,7 +456,7 @@ PR_IMPLEMENT(void) PR_LogPrint(const char *fmt, ...)
PR_ExplodeTime(PR_Now(), PR_GMTParameters, &now);
nb_tid = PR_snprintf(line, sizeof(line)-1,
"%04d-%02d-%02d %02d:%02d:%02d.%06d UTC - ",
now.tm_year, now.tm_month, now.tm_mday,
now.tm_year, now.tm_month + 1, now.tm_mday,
now.tm_hour, now.tm_min, now.tm_sec,
now.tm_usec);
}