From 8b6a1f621f784e07d43e65ad47597cf0ad8ed316 Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 5 Jul 2017 07:49:40 +0300 Subject: [PATCH] Test --- crypto777/OS_time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto777/OS_time.c b/crypto777/OS_time.c index cd2fc4d4b..03489f03e 100755 --- a/crypto777/OS_time.c +++ b/crypto777/OS_time.c @@ -591,8 +591,8 @@ int32_t conv_date(int32_t *secondsp,char *date) if ( hour >= 0 && hour < 24 && min >= 0 && min < 60 && sec >= 0 && sec < 60 ) *secondsp = (3600*hour + 60*min + sec); else printf("ERROR: seconds.%d %d %d %d, len.%d\n",*secondsp,hour,min,sec,len); - printf("(%s) -> Y.%d M.%d D.%d %d:%d:%d\n",date,year,month,day,hour,min,sec); - } else printf("short len.(%s) from (%s)\n",date,origdate); + //printf("(%s) -> Y.%d M.%d D.%d %d:%d:%d\n",date,year,month,day,hour,min,sec); + } //else printf("short len.(%s) from (%s)\n",date,origdate); sprintf(origdate,"%d-%02d-%02d",year,month,day); //2015-07-25T22:34:31Z if ( strcmp(tmpdate,origdate) != 0 ) {