test/run_storage: don't print unknown time stamps
This commit is contained in:
parent
44493ca0c4
commit
78c91e9e5b
@ -67,8 +67,13 @@ Ls(Storage &storage, const char *path)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
char mtime[32];
|
char mtime_buffer[32];
|
||||||
strftime(mtime, sizeof(mtime), "%F", gmtime(&info.mtime));
|
const char *mtime = " ";
|
||||||
|
if (info.mtime > 0) {
|
||||||
|
strftime(mtime_buffer, sizeof(mtime_buffer), "%F",
|
||||||
|
gmtime(&info.mtime));
|
||||||
|
mtime = mtime_buffer;
|
||||||
|
}
|
||||||
|
|
||||||
printf("%s %10llu %s %s\n",
|
printf("%s %10llu %s %s\n",
|
||||||
type, (unsigned long long)info.size,
|
type, (unsigned long long)info.size,
|
||||||
|
Loading…
Reference in New Issue
Block a user