summaryrefslogtreecommitdiff
path: root/source/a/dcron/crontab.c.O_EXCL.diff
diff options
context:
space:
mode:
Diffstat (limited to 'source/a/dcron/crontab.c.O_EXCL.diff')
-rw-r--r--source/a/dcron/crontab.c.O_EXCL.diff12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/a/dcron/crontab.c.O_EXCL.diff b/source/a/dcron/crontab.c.O_EXCL.diff
deleted file mode 100644
index f705487e..00000000
--- a/source/a/dcron/crontab.c.O_EXCL.diff
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nur dcron-4.5.orig//crontab.c dcron-4.5/crontab.c
---- dcron-4.5.orig//crontab.c 2011-05-01 07:22:09.000000000 -0500
-+++ dcron-4.5/crontab.c 2011-08-22 16:26:46.778225447 -0500
-@@ -199,7 +199,7 @@
- * Read from repFd, write to fd for "$CDir/$USER.new"
- */
- snprintf(path, sizeof(path), "%s.new", pas->pw_name);
-- if ((fd = open(path, O_CREAT|O_TRUNC|O_EXCL|O_APPEND|O_WRONLY, 0600)) >= 0) {
-+ if ((fd = open(path, O_CREAT|O_TRUNC|O_APPEND|O_WRONLY, 0600)) >= 0) {
- while ((n = read(repFd, buf, sizeof(buf))) > 0) {
- write(fd, buf, n);
- }