diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-09 02:23:42 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-09 02:23:42 +0000 |
commit | 44f96d39e166394e817bc9bcb7da6c9ab278efc7 (patch) | |
tree | f6c4139c4d6e41ba9785c577d1405bd7d780e8cd | |
parent | 6d0443557c96dc130d96931007b4d82a2d97bafc (diff) | |
download | busybox-w32-44f96d39e166394e817bc9bcb7da6c9ab278efc7.tar.gz busybox-w32-44f96d39e166394e817bc9bcb7da6c9ab278efc7.tar.bz2 busybox-w32-44f96d39e166394e817bc9bcb7da6c9ab278efc7.zip |
randomconfig fixes
-rw-r--r-- | mailutils/Config.in | 2 | ||||
-rw-r--r-- | mailutils/mime.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mailutils/Config.in b/mailutils/Config.in index 4edb0aefd..744fe122e 100644 --- a/mailutils/Config.in +++ b/mailutils/Config.in | |||
@@ -51,7 +51,7 @@ config SENDMAIL | |||
51 | Barebones sendmail. | 51 | Barebones sendmail. |
52 | 52 | ||
53 | config FEATURE_SENDMAIL_MAILX | 53 | config FEATURE_SENDMAIL_MAILX |
54 | bool "Allow to specify subject, attachments, their charset and connection helper" | 54 | bool "Allow to specify subject, attachments, their charset etc" |
55 | default y | 55 | default y |
56 | depends on SENDMAIL | 56 | depends on SENDMAIL |
57 | help | 57 | help |
diff --git a/mailutils/mime.c b/mailutils/mime.c index b81cfd54c..bda727b7c 100644 --- a/mailutils/mime.c +++ b/mailutils/mime.c | |||
@@ -221,7 +221,7 @@ static int parse(const char *boundary, char **argv) | |||
221 | if (opts & OPT_X) { | 221 | if (opts & OPT_X) { |
222 | int fd[2]; | 222 | int fd[2]; |
223 | xpipe(fd); | 223 | xpipe(fd); |
224 | pid = fork(); | 224 | pid = vfork(); |
225 | if (0 == pid) { | 225 | if (0 == pid) { |
226 | // child reads from fd[0] | 226 | // child reads from fd[0] |
227 | xdup2(fd[0], STDIN_FILENO); | 227 | xdup2(fd[0], STDIN_FILENO); |