Enabled @ as indicator of UTC seconds in timestrings

Этот коммит содержится в:
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"