diff options
| author | B. Watson <urchlay@slackware.uk> | 2025-12-02 15:17:14 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2025-12-02 15:17:14 -0500 |
| commit | 8649eea853afd4c41a384fa00ef76bccfdac4663 (patch) | |
| tree | 33716cf558ba21aca8ffe0c3f35ab0302ca58bf4 | |
| parent | e9426aaebed5d9844d485d09fd5c66964268afb2 (diff) | |
| download | alftools-8649eea853afd4c41a384fa00ef76bccfdac4663.tar.gz | |
alf: Fix derpage in last commit.
| -rw-r--r-- | src/alf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 <none>. */ - 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; |
