Reword ARG_MAX error messages

We're the shell. The "environment list" is our exported variables
This commit is contained in:
Fabian Homborg 2022-04-12 19:37:15 +02:00
parent 29e02ac7a5
commit 1326c286fa

View file

@ -391,8 +391,8 @@ void safe_report_exec_error(int err, const char *actual_cmd, const char *const *
char sz2[128]; char sz2[128];
format_size_safe(sz2, static_cast<unsigned long long>(arg_max)); format_size_safe(sz2, static_cast<unsigned long long>(arg_max));
FLOGF_SAFE(exec, FLOGF_SAFE(exec,
"Failed to execute process '%s': the size of argument and " "Failed to execute process '%s': the total size of the argument list and "
"environment lists %s exceeds the OS limit of %s.", "exported variables (%s) exceeds the OS limit of %s.",
actual_cmd, sz1, sz2); actual_cmd, sz1, sz2);
} else { } else {
// MAX_ARG_STRLEN, a linux thing that limits the size of one argument. It's // MAX_ARG_STRLEN, a linux thing that limits the size of one argument. It's
@ -404,8 +404,8 @@ void safe_report_exec_error(int err, const char *actual_cmd, const char *const *
} }
} else { } else {
FLOGF_SAFE(exec, FLOGF_SAFE(exec,
"Failed to execute process '%s': The total size of the argument and " "Failed to execute process '%s': the total size of the argument list and "
"environment lists (%s) exceeds the " "exported variables (%s) exceeds the "
"operating system limit.", "operating system limit.",
actual_cmd, sz1); actual_cmd, sz1);
} }