From c27488016e0e90569260bc513fa95acbad512ff5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 13 Apr 2010 20:43:02 +0200 Subject: [PATCH] execute: make flags_fds() parameters const --- execute.c | 4 ++-- execute.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/execute.c b/execute.c index 5ac5eefd331..a82d016cbca 100644 --- a/execute.c +++ b/execute.c @@ -91,7 +91,7 @@ static int shift_fds(int fds[], unsigned n_fds) { return 0; } -static int flags_fds(int fds[], unsigned n_fds, bool nonblock) { +static int flags_fds(const int fds[], unsigned n_fds, bool nonblock) { unsigned i; int r; @@ -667,7 +667,7 @@ static int enforce_user(const ExecContext *context, uid_t uid) { int exec_spawn(ExecCommand *command, const ExecContext *context, - int *fds, unsigned n_fds, + int fds[], unsigned n_fds, bool apply_permissions, bool apply_chroot, bool confirm_spawn, diff --git a/execute.h b/execute.h index d2ac4a82e00..0ed3ecd7809 100644 --- a/execute.h +++ b/execute.h @@ -164,7 +164,7 @@ typedef enum ExitStatus { int exec_spawn(ExecCommand *command, const ExecContext *context, - int *fds, unsigned n_fds, + int fds[], unsigned n_fds, bool apply_permissions, bool apply_chroot, bool confirm_spawn, -- 2.39.2