diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2019-03-26 19:38:25 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2019-03-26 19:38:25 +0000 |
| commit | 98b1cf29cf996396590c39a5d3c4f843e90bd40e (patch) | |
| tree | 13888d5c7ac770f56ea3bc493ca024f7326eb6ec /sbin/init | |
| parent | ed5e102abb70840db5827b2c7881a76ecf59a717 (diff) | |
Notes
Diffstat (limited to 'sbin/init')
| -rw-r--r-- | sbin/init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/init/init.c b/sbin/init/init.c index 54d59f6d8258..8a13e7ee6e70 100644 --- a/sbin/init/init.c +++ b/sbin/init/init.c @@ -1083,7 +1083,7 @@ execute_script(char *argv[]) error = access(script, X_OK); if (error == 0) { execv(script, argv + 1); - warning("can't exec %s: %m", script); + warning("can't directly exec %s: %m", script); } else if (errno != EACCES) { warning("can't access %s: %m", script); } |
