179316 - date literals aren't serialized properly. r=rjc sr=ben

git-svn-id: svn://10.0.0.236/trunk@133614 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blakeross%telocity.com
2002-11-12 02:12:02 +00:00
parent 4b6686fd99
commit b907a8fb77

View File

@@ -180,7 +180,7 @@ rdf_FormatDate(PRTime aTime, nsACString &aResult)
PRExplodedTime t;
PR_ExplodeTime(aTime, PR_LocalTimeParameters, &t);
char buf[32];
char buf[256];
PR_FormatTimeUSEnglish(buf, sizeof buf, "%a %b %d %H:%M:%S %Z %Y", &t);
aResult.Append(buf);