From 3a5faa5e84c35272a2e61f5d1c0f903428d64105 Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Mon, 21 Feb 2000 19:30:21 +0000 Subject: [PATCH] use YYYY/MM/DD --- src/util/ca_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/ca_test.c b/src/util/ca_test.c index 094bc54e1..d65b4f9c3 100644 --- a/src/util/ca_test.c +++ b/src/util/ca_test.c @@ -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); }