mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
to be unable to create its own temporary files. flow-tools developer Mark Fullmer has acknowledged the patch.
11 lines
488 B
C
11 lines
488 B
C
--- lib/ftfile.c Tue Apr 24 14:07:18 2001
|
|
+++ lib/ftfile.c Tue Apr 16 16:52:49 2002
|
|
@@ -449,7 +449,7 @@
|
|
} else if (nest == -2) {
|
|
sprintf(dbuf, "%2.2d-%2.2d/%2.2d-%2.2d-%2.2d/",
|
|
(int)tm->tm_year+1900, (int)tm->tm_mon+1,
|
|
- (int)tm->tm_year+1900, (int)tm->tm_mon+1, (int)tm->tm_mon+1);
|
|
+ (int)tm->tm_year+1900, (int)tm->tm_mon+1, (int)tm->tm_mday);
|
|
} else if (nest == -1) {
|
|
sprintf(dbuf, "%2.2d/%2.2d-%2.2d/%2.2d-%2.2d-%2.2d/",
|
|
(int)tm->tm_year+1900,
|