From cccf01cb9aa45769e2e9d41c1e8e98a6502a98e0 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sun, 18 Dec 2022 21:08:28 +0100 Subject: mrep/mbnc: use mseq -r as leading whitespace is now significant. Reported by lhynes. --- mcom | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mcom b/mcom index fb48401..397cb5f 100755 --- a/mcom +++ b/mcom @@ -323,7 +323,7 @@ fi *mbnc*) old_ifs="$IFS" IFS=$NL - set -- $(mseq -- "$@") + set -- $(mseq -r -- "$@") IFS="$old_ifs" if [ "$#" -ne 1 ]; then printf 'mbnc: needs exactly one mail to bounce\n' 1>&2 @@ -343,13 +343,13 @@ fi printf 'Resent-Date: %s\n' "$(mdate)" ( IFS=$NL - cat $(mseq -- "$@") + cat $(mseq -r -- "$@") ) ;; *mrep*) old_ifs="$IFS" IFS=$NL - set -- $(mseq -- "$@") + set -- $(mseq -r -- "$@") IFS="$old_ifs" if [ "$#" -ne 1 ]; then printf 'mrep: needs exactly one mail to reply to\n' 1>&2 -- cgit 1.4.1