From c71ac555f5eded27692a0c3eb364eb0a0ce8e0c0 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sun, 28 Feb 2010 14:24:08 +0100 Subject: [PATCH] tg-mail: Properly quote argument to --in-reply-to MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Ids usually contain < and >. These need to be quoted. Signed-off-by: Thomas Schwinge Signed-off-by: Uwe Kleine-König --- tg-mail.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tg-mail.sh b/tg-mail.sh index 6a008b4..8167ade 100644 --- a/tg-mail.sh +++ b/tg-mail.sh @@ -30,7 +30,7 @@ base_rev="$(git rev-parse --short --verify "refs/top-bases/$name" 2>/dev/null)" die "not a TopGit-controlled branch" if [ -n "$in_reply_to" ]; then - send_email_args="$send_email_args --in-reply-to=$in_reply_to" + send_email_args="$send_email_args --in-reply-to='$in_reply_to'" fi -- 2.11.4.GIT