[git commit master] libbb: revert the change where spawn reports exec failure

Denys Vlasenko vda.linux at googlemail.com
Sun Oct 11 02:09:37 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=4db34d6e27eacdd8b9b0340cda1905c37978c40f
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 libbb/vfork_daemon_rexec.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/libbb/vfork_daemon_rexec.c b/libbb/vfork_daemon_rexec.c
index 1dbeff8..27efb0e 100644
--- a/libbb/vfork_daemon_rexec.c
+++ b/libbb/vfork_daemon_rexec.c
@@ -41,7 +41,8 @@ pid_t FAST_FUNC spawn(char **argv)
 		 * (but don't run atexit() stuff, which would screw up parent.)
 		 */
 		failed = errno;
-		bb_perror_msg("can't execute '%s'", argv[0]);
+		/* mount, for example, does not want the message */
+		/*bb_perror_msg("can't execute '%s'", argv[0]);*/
 		_exit(111);
 	}
 	/* parent */
-- 
1.6.3.3



More information about the busybox-cvs mailing list