From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1F9BE4239C for ; Tue, 10 Jan 2023 22:53:01 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 18D6342D11; Tue, 10 Jan 2023 22:53:01 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id E17B74021E; Tue, 10 Jan 2023 22:52:58 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 3189220B92AE; Tue, 10 Jan 2023 13:52:58 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 3189220B92AE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1673387578; bh=9wDhizZfDzEJkcpWswlsuHNmBF8YwC/ioCDapWHC1Jk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=TR3lM7FsMzAnGVOOOmyAmwUdLN9xandCqkEJplYZnHhlNatEm4/CHEdtNnaEubOu+ CiJN74tixCNu/t7gQxL+I2Pi/i5n3bHSoITSCpBfAU/DHGMeDJj3vDorUT7U2s4GXR m/bT3q+zq+4BfzyGb0R4k/UB4K0BqILwGPC9bdRE= Date: Tue, 10 Jan 2023 13:52:58 -0800 From: Tyler Retzlaff To: Thomas Monjalon Cc: Sean Morrissey , Ferruh Yigit , dev@dpdk.org, David Marchand , stable@dpdk.org Subject: Re: [PATCH] devtools: fix escaped space in grep pattern Message-ID: <20230110215258.GF21476@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230110213317.1146005-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230110213317.1146005-1-thomas@monjalon.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org On Tue, Jan 10, 2023 at 10:33:17PM +0100, Thomas Monjalon wrote: > Since grep 3.8, a warning is printed if a space is escaped in a pattern: > grep: warning: stray \ before white space > > There was an occurence of such extra backslash in check-git-log.sh. > > Fixes: d448efa259e9 ("devtools: export dictionary for commit title check") > Cc: stable@dpdk.org > > Signed-off-by: Thomas Monjalon > --- thanks, it was annoying. Acked-by: Tyler Retzlaff