mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 00:09:15 -04:00
that patches rotatelogs to always keep a hardlink to the latest log file, but without the seconds-since-epoch integer. Just as a convenience - when developing web apps, it makes it easier to just check the log file. Submitted by: Palle Girgensohn
19 lines
486 B
Diff
19 lines
486 B
Diff
--- src/support/rotatelogs.c~ Mon Aug 3 11:15:33 1998
|
|
+++ src/support/rotatelogs.c Sun Mar 26 22:42:40 2000
|
|
@@ -11,6 +11,7 @@
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
+#include <unistd.h>
|
|
|
|
#define BUFSIZE 65536
|
|
#define ERRMSGSZ 82
|
|
@@ -95,6 +96,8 @@
|
|
}
|
|
else {
|
|
close(nLogFDprev);
|
|
+ unlink(szLogRoot);
|
|
+ link(buf2, szLogRoot);
|
|
}
|
|
nMessCount = 0;
|
|
}
|