Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/store_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ static int file_metatile_expire(struct storage_backend * store, const char *xmlc
if (!gmtime_r(&(s.st_mtime), &touchCalendar)) {
touchTime.modtime = 315558000;
} else {
if (touchCalendar.tm_year > 105) { // Tile hasn't already been marked as expired
if (touchCalendar.tm_year > 115) { // Tile hasn't already been marked as expired
touchCalendar.tm_year -= 20; //Set back by 20 years, to keep the creation time as reference.
touchTime.modtime = mktime(&touchCalendar);
} else {
Expand Down
Loading