From patchwork Mon Dec 4 00:16:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 1573 Return-Path: Received: from mail01.ipfire.org (unknown [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 3491660D8D for ; Sun, 3 Dec 2017 14:16:24 +0100 (CET) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 5F26F1FD7; Sun, 3 Dec 2017 14:16:22 +0100 (CET) Received: from Devel.localdomain (p4FDF0C34.dip0.t-ipconnect.de [79.223.12.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id BBCCA1FD7 for ; Sun, 3 Dec 2017 14:16:20 +0100 (CET) From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] pakfire - 'functions.pl': fixed typo Date: Sun, 3 Dec 2017 14:16:16 +0100 Message-Id: <20171203131616.24487-1-matthias.fischer@ipfire.org> X-Mailer: git-send-email 2.15.1 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.21 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" Just read this typo in a forum posting. Couldn't resist... Best, Matthias Signed-off-by: Matthias Fischer --- src/pakfire/lib/functions.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl index cfb7e5117..5fe4cc4e6 100644 --- a/src/pakfire/lib/functions.pl +++ b/src/pakfire/lib/functions.pl @@ -904,7 +904,7 @@ sub checkcryptodb { logger("CRYPTO INFO: Checking GnuPG Database"); my $ret = system("gpg --list-keys | grep -q $myid"); unless ( "$ret" eq "0" ) { - message("CRYPTO WARN: The GnuPG isn't configured corectly. Trying now to fix this."); + message("CRYPTO WARN: The GnuPG isn't configured correctly. Trying now to fix this."); message("CRYPTO WARN: It's normal to see this on first execution."); message("CRYPTO WARN: If this message is being shown repeatedly, check if time and date are set correctly, and if IPFire can connect via port 11371 TCP."); my $command = "gpg --keyserver pgp.ipfire.org --always-trust --status-fd 2";