Enabled @ as indicator of UTC seconds in timestrings

This commit is contained in:
Thomas Schmitt 2008-10-30 11:44:13 +00:00
부모 c17edd608e
커밋 cf920a350d
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -1348,13 +1348,13 @@ time_t Decode_timestring(char *code, time_t *date, int flag)
*date= 0;
cpt= code;
if(code[0]=='-' || code[0]=='+' || code[0]=='='){
if(code[0]=='-' || code[0]=='+' || code[0]=='=' || code[0]=='@'){
if(code[1]==0)
return(0);
if(!isdigit(code[1]))
return(0);
value= -1;
if(code[0]=='=') {
if(code[0]=='=' || code[0]=='@') {
seconds= 0;
sscanf(code+1,"%lf",&value);
} else {

파일 보기

@ -1 +1 @@
#define Xorriso_timestamP "2008.10.30.110049"
#define Xorriso_timestamP "2008.10.30.114313"