From bcee4360d0113d2cbc71c9b0d13495327894e454 Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Thu, 15 Jan 2015 17:08:55 +0100 Subject: [PATCH] Don't save the context within execprog() This context_save() call was copied there accidently. --- sbr/execprog.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sbr/execprog.c b/sbr/execprog.c index 6a4a912..9cc8879 100644 --- a/sbr/execprog.c +++ b/sbr/execprog.c @@ -11,9 +11,7 @@ execprog(char *cmd, char **arg) { pid_t pid; - context_save(); fflush(stdout); - switch (pid = fork()) { case -1: /* fork error */ -- 1.7.10.4