diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-11-30 13:06:32 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-11-30 13:06:32 +0000 |
| commit | 940294e0758239f337f76f3c0f096a8cd632f2ca (patch) | |
| tree | 3f72411c73d60fde0d5a21d1714e792d82cd6895 /src/pub/skabus-pub-daemon.c | |
| parent | 74b9e54d92a0b0937b457b2a2e4e5bc3a5eae783 (diff) | |
| download | skabus-940294e0758239f337f76f3c0f096a8cd632f2ca.tar.gz | |
Fix build; adapt to skalibs-2.10.0.0
Diffstat (limited to 'src/pub/skabus-pub-daemon.c')
| -rw-r--r-- | src/pub/skabus-pub-daemon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pub/skabus-pub-daemon.c b/src/pub/skabus-pub-daemon.c index a865186..b27c04e 100644 --- a/src/pub/skabus-pub-daemon.c +++ b/src/pub/skabus-pub-daemon.c @@ -6,7 +6,7 @@ #include <skalibs/types.h> #include <skalibs/sgetopt.h> #include <skalibs/strerr2.h> -#include <skalibs/djbunix.h> +#include <skalibs/exec.h> #include <s6/config.h> @@ -15,7 +15,7 @@ #define USAGE "skabus-pub-daemon [ -v verbosity ] [ -d | -D ] [ -1 ] [ -c maxconn ] [ -b backlog ] [ -G gid,gid,... ] [ -g gid ] [ -u uid ] [ -U ] [ -t timeout ] [ -T lameducktimeout ] [ -i rulesdir | -x rulesfile ] [ -S | -s ] [ -k announcere ] path msgfsdir" #define dieusage() strerr_dieusage(100, USAGE) -int main (int argc, char const *const *argv, char const *const *envp) +int main (int argc, char const *const *argv) { unsigned int verbosity = 1 ; int flag1 = 0 ; @@ -157,6 +157,6 @@ int main (int argc, char const *const *argv, char const *const *envp) newargv[m++] = "--" ; newargv[m++] = *argv++ ; newargv[m++] = 0 ; - xpathexec_run(newargv[0], newargv, envp) ; + xexec(newargv) ; } } |
