From 697a18dc7f44785710253fcc366706a60deddc0e Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 25 Aug 2023 09:14:09 +0200 Subject: [PATCH] scripts/mbox2send: fix up X- headers git changed it's output so the X- headers were not properly getting added to the individual patches. Fix that up. --- scripts/mbox2send | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mbox2send b/scripts/mbox2send index 7cc902ed77a..35f5e36b853 100755 --- a/scripts/mbox2send +++ b/scripts/mbox2send @@ -93,8 +93,8 @@ while ($line = ) { # eat the line $eat = "true"; } - # strip out the Content-Disposition line - if ($line =~ m/Content-Disposition:/) { + # strip out the Content-Type line + if ($line =~ m/Content-Type:/) { # eat the line $eat = "true"; -- 2.47.3