summaryrefslogtreecommitdiff
path: root/src/libexecline/el_spawn0.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexecline/el_spawn0.c')
-rw-r--r--src/libexecline/el_spawn0.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/libexecline/el_spawn0.c b/src/libexecline/el_spawn0.c
index d397557..a05ed5d 100644
--- a/src/libexecline/el_spawn0.c
+++ b/src/libexecline/el_spawn0.c
@@ -7,10 +7,6 @@
pid_t el_spawn0 (char const *prog, char const *const *argv, char const *const *envp)
{
- if (!argv[0])
- {
- static char const *const newargv[3] = { EXECLINE_BINPREFIX "exit", "0", 0 } ;
- return cspawn(newargv[0], newargv, envp, 0, 0, 0) ;
- }
- else return cspawn(prog, argv, envp, 0, 0, 0) ;
+ if (!argv[0]) argv = el_trueargv ;
+ return cspawn(prog, argv, envp, 0, 0, 0) ;
}