use YYYY/MM/DD

This commit is contained in:
Marty Kraimer
2000-02-21 19:30:21 +00:00
parent bba9d246d1
commit 3a5faa5e84
+1 -1
View File
@@ -363,7 +363,7 @@ LOCAL void tsStampToText(char * text, const TS_STAMP *pstamp)
if((nsec%1000000)*1000000 == nsec) nsectext[4] = 0;
else if((nsec%1000)*1000 == nsec) nsectext[7] = 0;
else nsectext[10] = 0;
strftime(text,40,"%m/%d/%Y %H:%M:%S",&tmstruct);
strftime(text,40,"%Y/%m/%d %H:%M:%S",&tmstruct);
strcat(text,nsectext);
}