aboutsummaryrefslogtreecommitdiffstats
path: root/src/notify.c
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@calcurse.org>2021-04-04 11:53:53 -0400
committerLukas Fleischer <lfleischer@calcurse.org>2021-04-04 12:15:31 -0400
commit5398f3a24e988da4836f78fba62acf2ead1030b0 (patch)
treea580b9b1ad611eaab723c8b62172bbe801578a1a /src/notify.c
parent193ad3415a0e76bf046bfcc3f03dd65742f18589 (diff)
downloadcalcurse-5398f3a24e988da4836f78fba62acf2ead1030b0.tar.gz
calcurse-5398f3a24e988da4836f78fba62acf2ead1030b0.zip
Call setsid() for hook/notification commands
We do not want hook or notification commands to interact with the terminal in any way. Create a new session for them. Addresses GitHub issue #326. Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/notify.c')
-rw-r--r--src/notify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notify.c b/src/notify.c
index b73c369..3491e8e 100644
--- a/src/notify.c
+++ b/src/notify.c
@@ -221,7 +221,7 @@ unsigned notify_launch_cmd(void)
notify_app.state |= APOINT_NOTIFIED;
- if ((pid = shell_exec(&pin, &pout, &perr, *arg, arg))) {
+ if ((pid = shell_exec(&pin, &pout, &perr, 1, *arg, arg))) {
close(pin);
close(pout);
close(perr);