mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Add a missing space to the error message when execvp() failed.
This commit is contained in:
parent
f573a0a634
commit
023c421a96
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ Proc_Exec(const ProcStuff *ps)
|
|||
execvp(ps->argv[0], ps->argv);
|
||||
|
||||
write(STDERR_FILENO, ps->argv[0], strlen(ps->argv[0]));
|
||||
write(STDERR_FILENO, ":", 1);
|
||||
write(STDERR_FILENO, ": ", 2);
|
||||
write(STDERR_FILENO, strerror(errno), strlen(strerror(errno)));
|
||||
write(STDERR_FILENO, "\n", 1);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue