summaryrefslogtreecommitdiff
path: root/app-misc/fsniper/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-misc/fsniper/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-misc/fsniper/files')
-rw-r--r--app-misc/fsniper/files/fsniper-1.3.1-format-security.patch26
-rw-r--r--app-misc/fsniper/files/fsniper-1.3.1-umask.patch18
-rw-r--r--app-misc/fsniper/files/fsniper-1.3.1-waitpid.patch15
3 files changed, 0 insertions, 59 deletions
diff --git a/app-misc/fsniper/files/fsniper-1.3.1-format-security.patch b/app-misc/fsniper/files/fsniper-1.3.1-format-security.patch
deleted file mode 100644
index 70c9460f97d2..000000000000
--- a/app-misc/fsniper/files/fsniper-1.3.1-format-security.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From d15abeb19d1692698e0ec8a9f4a764a210e57a2b Mon Sep 17 00:00:00 2001
-From: Jakub Hrozek <jhrozek@redhat.com>
-Date: Tue, 3 Dec 2013 10:50:29 +0100
-Subject: [PATCH] Fix an error message
-
-This patch fixes https://bugzilla.redhat.com/show_bug.cgi?id=1037073
----
- src/handle_event.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/handle_event.c b/src/handle_event.c
-index 22f35f10ea3a6083c2ef933f794b529b8879a1ed..cac004b76917c192ad9bf8801062d701e4dc18c6 100644
---- a/src/handle_event.c
-+++ b/src/handle_event.c
-@@ -313,7 +313,7 @@ void handle_event(struct inotify_event* event, int writefd)
- if (sysret == 127)
- {
- temp = malloc(27 + strlen(handler->value) + 20 + 1);
-- sprintf("Could not execute handler \"%s\", trying next one.\n", handler->value);
-+ sprintf(temp, "Could not execute handler \"%s\", trying next one.\n", handler->value);
- write_out(writefd, temp);
-
- free(temp);
---
-1.8.4.2
-
diff --git a/app-misc/fsniper/files/fsniper-1.3.1-umask.patch b/app-misc/fsniper/files/fsniper-1.3.1-umask.patch
deleted file mode 100644
index 39aecaa3e0d1..000000000000
--- a/app-misc/fsniper/files/fsniper-1.3.1-umask.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-X-Git-Url: http://code.l3ib.org/?p=fsniper.git;a=blobdiff_plain;f=src%2Fmain.c;fp=src%2Fmain.c;h=cd49dffebe4b4c728b62c28c1381c4fb6f5ad87d;hp=03a8d701d6f9802ba346b591429e58741ca53479;hb=82cb0b46c48485fd4f6231ce3169c7be87d1ea07;hpb=2bbeb5d6e6b55bb9692c043fcdbeab15d9723c9e
-
-diff --git a/src/main.c b/src/main.c
-index 03a8d70..cd49dff 100644
---- a/src/main.c
-+++ b/src/main.c
-@@ -153,7 +153,10 @@ char *get_pid_filename()
- void write_pid_file(char *pidfilename)
- {
- FILE *pidfile;
-+ mode_t umask_old;
-+ umask_old = umask(0177);
- pidfile = fopen(pidfilename, "w");
-+ umask(umask_old);
- fprintf(pidfile, "%d", getpid());
- fclose(pidfile);
- }
-
diff --git a/app-misc/fsniper/files/fsniper-1.3.1-waitpid.patch b/app-misc/fsniper/files/fsniper-1.3.1-waitpid.patch
deleted file mode 100644
index 1363c4cbf73f..000000000000
--- a/app-misc/fsniper/files/fsniper-1.3.1-waitpid.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Replace obsolete wait3 by waitpid
-
---- a/src/main.c
-+++ b/src/main.c
-@@ -193,8 +193,8 @@
- /* handler for reaping children after the fork is done. */
- void handle_child_signal()
- {
-- union wait status;
-- while (wait3(&status, WNOHANG, 0) > 0) {}
-+ int status;
-+ while (waitpid(-1, &status, WNOHANG) > 0) {}
- }
-
- /* handler for HUP. reloads the config file. */