mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-17 00:00:40 +00:00
11 lines
228 B
Plaintext
11 lines
228 B
Plaintext
Index: ut.c
|
|
@@ -35,7 +35,7 @@
|
|
|
|
|
|
strncpy (p+3, "JanFebMarAprMayJunJulAugSepOctNovDec"+t->tm_mon*3, 3);
|
|
- STOREINT (p+9, t->tm_year);
|
|
+ STOREINT (p+9, t->tm_year % 100);
|
|
if (t->tm_year < 100) {
|
|
p[7] = '1';
|
|
p[8] = '9';
|