Commit 55cd5a9a authored by Max Kellermann's avatar Max Kellermann

DirectorySave: save the mtime only if it is known

parent 3f4c2832
...@@ -43,8 +43,9 @@ void ...@@ -43,8 +43,9 @@ void
directory_save(FILE *fp, const Directory &directory) directory_save(FILE *fp, const Directory &directory)
{ {
if (!directory.IsRoot()) { if (!directory.IsRoot()) {
fprintf(fp, DIRECTORY_MTIME "%lu\n", if (directory.mtime != 0)
(unsigned long)directory.mtime); fprintf(fp, DIRECTORY_MTIME "%lu\n",
(unsigned long)directory.mtime);
fprintf(fp, "%s%s\n", DIRECTORY_BEGIN, directory.GetPath()); fprintf(fp, "%s%s\n", DIRECTORY_BEGIN, directory.GetPath());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment