From 3ed0734b7638b56fe479957f81299f79c90861e6 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 9 Sep 2023 10:41:49 +0000 Subject: Adapt to skalibs-2.14 Signed-off-by: Laurent Bercot --- src/libexecline/el_spawn0.c | 6 +++--- src/libexecline/el_spawn1.c | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src/libexecline') diff --git a/src/libexecline/el_spawn0.c b/src/libexecline/el_spawn0.c index 0cfe017..d4265a4 100644 --- a/src/libexecline/el_spawn0.c +++ b/src/libexecline/el_spawn0.c @@ -1,6 +1,6 @@ /* ISC license. */ -#include +#include #include #include @@ -10,7 +10,7 @@ pid_t el_spawn0 (char const *prog, char const *const *argv, char const *const *e if (!argv[0]) { static char const *const newargv[3] = { EXECLINE_BINPREFIX "exit", "0", 0 } ; - return child_spawn0(newargv[0], newargv, 0) ; + return cspawn(newargv[0], newargv, envp, 0, 0, 0) ; } - else return child_spawn0(prog, argv, envp) ; + else return cspawn(prog, argv, envp, 0, 0, 00) ; } diff --git a/src/libexecline/el_spawn1.c b/src/libexecline/el_spawn1.c index 937f1a3..d9a7f87 100644 --- a/src/libexecline/el_spawn1.c +++ b/src/libexecline/el_spawn1.c @@ -1,6 +1,7 @@ /* ISC license. */ -#include +#include + #include #include -- cgit v1.2.3