summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@linbit.com>2012-02-11 20:57:44 +0100
committerAndreas Gruenbacher <agruen@linbit.com>2012-02-11 21:56:03 +0100
commit33105e6a62a6eb0927baf3bc2794866a8e7a6917 (patch)
tree9ae2246536da88c4549407d665c43daf2e87ae2b
parent02f15444278eb3a854acae0192124153e0c6d9d4 (diff)
downloadquilt-33105e6a62a6eb0927baf3bc2794866a8e7a6917.tar.gz
quilt mail: Fix wrong use of edmail
It makes no sense to pass the recipient addresses to edmail when removing Bcc lines.
-rw-r--r--quilt/mail.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/quilt/mail.in b/quilt/mail.in
index c9139d4..15990e4 100644
--- a/quilt/mail.in
+++ b/quilt/mail.in
@@ -137,7 +137,7 @@ process_mail()
echo ${QUILT_SENDMAIL:-sendmail} \
${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@"
$QUILT_DIR/scripts/edmail --charset $opt_charset \
- --remove-header Bcc "$@" < $tmpfile \
+ --remove-header Bcc < $tmpfile \
| ${QUILT_SENDMAIL:-sendmail} \
${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@"
else