From patchwork Mon Jan 16 20:34:04 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: jon X-Patchwork-Id: 6434 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4NwkJv2Vy8z3wgZ for ; Mon, 16 Jan 2023 20:34:23 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4NwkJs21qKzhR; Mon, 16 Jan 2023 20:34:21 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4NwkJr6lWqz2ytl; Mon, 16 Jan 2023 20:34:20 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4NwkJq5txWz2x9t for ; Mon, 16 Jan 2023 20:34:19 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4NwkJp6Cq2zQM; Mon, 16 Jan 2023 20:34:18 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1673901259; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=MNiKyGzMo9wRabaGa0PJGJpAwx1q7ziLwWLwHShg2h8=; b=GxfObKGECYzgUs9Nx9yJSgs4t3/bItXk7igVWF+nbiM51Fa8q2u0TCJSSLuA6hcio1k9BE eJ99oRqMuFdZTlAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1673901259; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=MNiKyGzMo9wRabaGa0PJGJpAwx1q7ziLwWLwHShg2h8=; b=bpJ1sCgAjPbxB9gVfGF9YEtTLQZ874eYfTFzegIoFn5JXByR8oEX3bHYSwBqJKEEV6waoO 5WvcpQcg+ATfrsrnPFgxrA8Braggtwbq9iJ6NjKE0hizukAMp9pM6Zb82qgqlQxiRVDPzn bAM0EFIH/LDqunWiI2E6q1HjOqOKuDLr2KONejvFBOq74HAARvLGzNt4Ag82UyP78WBYZG Qld/jD6QAE4gWvH3tappT1sgeb2DiOoS8+pZ/AQh0PRGvcjjLnoOMvQf9IF/jio12DJTC3 oSxBFhHoL5uPgPUttrRtL1lrqc6DgPtCx93ymRT0UYlgWA+NThSL9ApFlrIB+A== From: Jon Murphy To: development@lists.ipfire.org Subject: [PATCH] services.cgi: avoid experimental warnings Date: Mon, 16 Jan 2023 14:34:04 -0600 Message-Id: <20230116203404.3723490-1-jon.murphy@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - add single line to code: no warnings 'experimental'; - corrects this issue: https://lists.ipfire.org/pipermail/development/2022-December/015113.html Signed-off-by: Jon Murphy --- html/cgi-bin/services.cgi | 1 + 1 file changed, 1 insertion(+) diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index 3c0f27f99..0d06ab5fe 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -21,6 +21,7 @@ use strict; use feature "switch"; +no warnings 'experimental'; # enable only the following on debugging purpose #use warnings; #use CGI::Carp 'fatalsToBrowser';