summaryrefslogtreecommitdiff
path: root/app-admin/cronolog/files/1.6.2-patches/cronolog-large-file.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /app-admin/cronolog/files/1.6.2-patches/cronolog-large-file.patch
reinit the tree, so we can have metadata
Diffstat (limited to 'app-admin/cronolog/files/1.6.2-patches/cronolog-large-file.patch')
-rw-r--r--app-admin/cronolog/files/1.6.2-patches/cronolog-large-file.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/app-admin/cronolog/files/1.6.2-patches/cronolog-large-file.patch b/app-admin/cronolog/files/1.6.2-patches/cronolog-large-file.patch
new file mode 100644
index 000000000000..25e488f061c0
--- /dev/null
+++ b/app-admin/cronolog/files/1.6.2-patches/cronolog-large-file.patch
@@ -0,0 +1,27 @@
+--- a/src/cronolog.c 2003-10-13 12:35:17.000000000 +0000
++++ b/src/cronolog.c 2003-10-13 12:36:36.000000000 +0000
+@@ -82,6 +82,8 @@
+ * written to "file" (e.g. /dev/console) or to stderr if "file" is "-".
+ */
+
++#define _GNU_SOURCE 1
++
+ #include "cronoutils.h"
+ #include "getopt.h"
+
+@@ -394,13 +396,13 @@
+ timestamp(*pnext_period), *pnext_period,
+ *pnext_period - time_now));
+
+- log_fd = open(pfilename, O_WRONLY|O_CREAT|O_APPEND, FILE_MODE);
++ log_fd = open(pfilename, O_WRONLY|O_CREAT|O_APPEND|O_LARGEFILE, FILE_MODE);
+
+ #ifndef DONT_CREATE_SUBDIRS
+ if ((log_fd < 0) && (errno == ENOENT))
+ {
+ create_subdirs(pfilename);
+- log_fd = open(pfilename, O_WRONLY|O_CREAT|O_APPEND, FILE_MODE);
++ log_fd = open(pfilename, O_WRONLY|O_CREAT|O_APPEND|O_LARGEFILE, FILE_MODE);
+ }
+ #endif
+