From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1396C15808B for ; Sat, 2 Apr 2022 15:49:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 541CFE0841; Sat, 2 Apr 2022 15:49:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1DA77E0841 for ; Sat, 2 Apr 2022 15:49:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 359C334118B for ; Sat, 2 Apr 2022 15:49:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 697041BD for ; Sat, 2 Apr 2022 15:49:12 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1648914549.9e700900862901ad291b1bb7af8ad09ff07f1ed2.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/pdns-recursor/files/pdns-recursor-4.6.1-parseACL.patch X-VCS-Directories: net-dns/pdns-recursor/files/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: 9e700900862901ad291b1bb7af8ad09ff07f1ed2 X-VCS-Branch: master Date: Sat, 2 Apr 2022 15:49:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e7f3c59f-4577-4647-b415-e7dc2fd47cd1 X-Archives-Hash: ec553d83e55220b114e13ef7959878c2 commit: 9e700900862901ad291b1bb7af8ad09ff07f1ed2 Author: Sven Wegener gentoo org> AuthorDate: Sat Apr 2 15:43:45 2022 +0000 Commit: Sven Wegener gentoo org> CommitDate: Sat Apr 2 15:49:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e700900 net-dns/pdns-recursor: Update patch for warning message Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Sven Wegener gentoo.org> net-dns/pdns-recursor/files/pdns-recursor-4.6.1-parseACL.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-dns/pdns-recursor/files/pdns-recursor-4.6.1-parseACL.patch b/net-dns/pdns-recursor/files/pdns-recursor-4.6.1-parseACL.patch index 0d29a24f160f..594fc8eca609 100644 --- a/net-dns/pdns-recursor/files/pdns-recursor-4.6.1-parseACL.patch +++ b/net-dns/pdns-recursor/files/pdns-recursor-4.6.1-parseACL.patch @@ -7,7 +7,7 @@ index 1700a9fde..ed09f2680 100644 auto allowFrom = parseACL("allow-from-file", "allow-from"); - if(allowFrom->size() == 0) { -+ if(allowFrom != nullptr && allowFrom->size() == 0) { ++ if(allowFrom == nullptr || allowFrom->size() == 0) { if(::arg()["local-address"]!="127.0.0.1" && ::arg().asNum("local-port")==53) g_log<