From 8649eea853afd4c41a384fa00ef76bccfdac4663 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 2 Dec 2025 15:17:14 -0500 Subject: alf: Fix derpage in last commit. --- src/alf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/alf.c b/src/alf.c index d0490ab..9f9ae9d 100644 --- a/src/alf.c +++ b/src/alf.c @@ -110,7 +110,7 @@ unsigned long get_msdos_date_time(void) { /* use a 0 timestamp if the year's out of range, unalf will display it as . */ - if(tm->tm_year < 1980 || tm->tm_year > 2107) + if(tm->tm_year < 80 || tm->tm_year > 207) return 0; msdos_year = tm->tm_year + 1900 - 1980; -- cgit v1.2.3