From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 17092C4321E for ; Wed, 30 Nov 2022 19:37:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229499AbiK3ThF (ORCPT ); Wed, 30 Nov 2022 14:37:05 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48126 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229472AbiK3ThE (ORCPT ); Wed, 30 Nov 2022 14:37:04 -0500 Received: from orbyte.nwl.cc (orbyte.nwl.cc [IPv6:2001:41d0:e:133a::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B71658B1BC for ; Wed, 30 Nov 2022 11:37:03 -0800 (PST) Received: from n0-1 by orbyte.nwl.cc with local (Exim 4.94.2) (envelope-from ) id 1p0StC-0001lB-4A; Wed, 30 Nov 2022 20:37:02 +0100 Date: Wed, 30 Nov 2022 20:37:02 +0100 From: Phil Sutter To: Florian Westphal Cc: netfilter-devel Subject: Re: [PATCH v3 iptables-nft 0/3] remove escape_quotes support Message-ID: Mail-Followup-To: Phil Sutter , Florian Westphal , netfilter-devel References: <20221130093154.29004-1-fw@strlen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221130093154.29004-1-fw@strlen.de> Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org On Wed, Nov 30, 2022 at 10:31:51AM +0100, Florian Westphal wrote: > Changes since v3: > - replace strcmp(s, "") with s[0], do not escape ' > - handle multiline expectations Series applied after dropping the strcmp() changes and eliminating the missed tick escaping. Thanks!