aboutsummaryrefslogtreecommitdiffstats
path: root/src/hooks.c
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@calcurse.org>2021-04-04 10:43:26 -0400
committerLukas Fleischer <lfleischer@calcurse.org>2021-04-04 12:15:26 -0400
commit5710a8bd7fc3d5a3e46f108c16199ed7553515f0 (patch)
tree456e0ed7aeff549d0177f02f225821c4edde9b12 /src/hooks.c
parentf41955e491476dfb844f28f46523d0430d27c88a (diff)
downloadcalcurse-5710a8bd7fc3d5a3e46f108c16199ed7553515f0.tar.gz
calcurse-5710a8bd7fc3d5a3e46f108c16199ed7553515f0.zip
Add parameter to redirect stderr to shell_exec()
Add a function parameter to allows redirecting stderr in addition to stdin and stdout. The parameter will be used with a follow-up change. Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/hooks.c')
-rw-r--r--src/hooks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hooks.c b/src/hooks.c
index b4933af..cf1db5e 100644
--- a/src/hooks.c
+++ b/src/hooks.c
@@ -53,8 +53,8 @@ int run_hook(const char *name)
arg[0] = hook_cmd;
arg[1] = NULL;
- if ((pid = shell_exec(NULL, NULL, *arg, arg))) {
- ret = child_wait(NULL, NULL, pid);
+ if ((pid = shell_exec(NULL, NULL, NULL, *arg, arg))) {
+ ret = child_wait(NULL, NULL, NULL, pid);
if (ret > 0 && WIFEXITED(ret)) {
asprintf(&mesg, "%s hook: exit status %d",
name,