svn commit: trunk/busybox/mailutils
vda at busybox.net
vda at busybox.net
Sun Nov 9 02:23:43 UTC 2008
Author: vda
Date: 2008-11-08 18:23:42 -0800 (Sat, 08 Nov 2008)
New Revision: 23972
Log:
randomconfig fixes
Modified:
trunk/busybox/mailutils/Config.in
trunk/busybox/mailutils/mime.c
Changeset:
Modified: trunk/busybox/mailutils/Config.in
===================================================================
--- trunk/busybox/mailutils/Config.in 2008-11-09 00:44:40 UTC (rev 23971)
+++ trunk/busybox/mailutils/Config.in 2008-11-09 02:23:42 UTC (rev 23972)
@@ -51,7 +51,7 @@
Barebones sendmail.
config FEATURE_SENDMAIL_MAILX
- bool "Allow to specify subject, attachments, their charset and connection helper"
+ bool "Allow to specify subject, attachments, their charset etc"
default y
depends on SENDMAIL
help
Modified: trunk/busybox/mailutils/mime.c
===================================================================
--- trunk/busybox/mailutils/mime.c 2008-11-09 00:44:40 UTC (rev 23971)
+++ trunk/busybox/mailutils/mime.c 2008-11-09 02:23:42 UTC (rev 23972)
@@ -221,7 +221,7 @@
if (opts & OPT_X) {
int fd[2];
xpipe(fd);
- pid = fork();
+ pid = vfork();
if (0 == pid) {
// child reads from fd[0]
xdup2(fd[0], STDIN_FILENO);
More information about the busybox-cvs
mailing list