From be0a81e7746896d7430aa8c7382ae4e55eff33d4 Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Wed, 15 Sep 2021 21:18:55 -0500 Subject: [PATCH] Fix arg order --- src/lib/server/exec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/server/exec.h b/src/lib/server/exec.h index e22c215229..7d7f27818f 100644 --- a/src/lib/server/exec.h +++ b/src/lib/server/exec.h @@ -90,7 +90,7 @@ int fr_exec_fork_wait(pid_t *pid_p, int *stdin_fd, int *stdout_fd, int *stderr_f int fr_exec_start(TALLOC_CTX *ctx, fr_exec_state_t *exec, request_t *request, fr_value_box_list_t *args, - fr_pair_list_t *env_pairs, bool env_inherit, bool env_escape, + fr_pair_list_t *env_pairs, bool env_escape, bool env_inherit, bool need_stdin, bool store_stdout, TALLOC_CTX *stdout_ctx, fr_time_delta_t timeout); -- 2.47.2