diff options
author | René Scharfe <l.s.r@web.de> | 2022-10-30 12:51:55 +0100 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-10-30 19:04:47 +0100 |
commit | eb5b6b57d0e9fba0e50871ece4ea79e76cd61a36 (patch) | |
tree | 101dd42f25ad12e6a7aea13e438d77c6b6dcd4e8 /run-command.h | |
parent | use child_process members "args" and "env" directly (diff) | |
download | git-eb5b6b57d0e9fba0e50871ece4ea79e76cd61a36.tar.xz git-eb5b6b57d0e9fba0e50871ece4ea79e76cd61a36.zip |
replace and remove run_command_v_opt_cd_env()
run_command_v_opt_cd_env() is only used in an example in a comment. Use
the struct child_process member "env" and run_command() directly instead
and then remove the unused convenience function.
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to 'run-command.h')
-rw-r--r-- | run-command.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/run-command.h b/run-command.h index 61073fc589..39e5eae8ba 100644 --- a/run-command.h +++ b/run-command.h @@ -151,7 +151,7 @@ struct child_process { /** * The functions: start_command, finish_command, run_command, - * run_command_v_opt, run_command_v_opt_cd_env do the following: + * run_command_v_opt do the following: * * - If a system call failed, errno is set and -1 is returned. A diagnostic * is printed. @@ -249,7 +249,6 @@ int run_command_v_opt_tr2(const char **argv, int opt, const char *tr2_class); * env (the environment) is to be formatted like environ: "VAR=VALUE". * To unset an environment variable use just "VAR". */ -int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env); int run_command_v_opt_cd_env_tr2(const char **argv, int opt, const char *dir, const char *const *env, const char *tr2_class); |