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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4EB021396D9 for ; Tue, 17 Oct 2017 17:52:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FAE5E0F38; Tue, 17 Oct 2017 17:52:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7C2DBE0F38 for ; Tue, 17 Oct 2017 17:52:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 574C033FE2A for ; Tue, 17 Oct 2017 17:52:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A171531A for ; Tue, 17 Oct 2017 17:52:11 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1508262727.85aa4bd643ce3503aa3d2501337e4acf0ed3ca34.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-ftp/proftpd/files/proftpd-1.3.6_rc4-open-tests.patch X-VCS-Directories: net-ftp/proftpd/files/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 85aa4bd643ce3503aa3d2501337e4acf0ed3ca34 X-VCS-Branch: master Date: Tue, 17 Oct 2017 17:52:11 +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-Archives-Salt: 0657924e-f9e8-42ab-88f8-3d973ab7f1aa X-Archives-Hash: a7d68f29dcbdecde1a17ab608c6c66f7 commit: 85aa4bd643ce3503aa3d2501337e4acf0ed3ca34 Author: Michael Mair-Keimberger gmail com> AuthorDate: Thu Sep 28 18:34:52 2017 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Oct 17 17:52:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85aa4bd6 net-ftp/proftpd: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/5817 .../files/proftpd-1.3.6_rc4-open-tests.patch | 24 ---------------------- 1 file changed, 24 deletions(-) diff --git a/net-ftp/proftpd/files/proftpd-1.3.6_rc4-open-tests.patch b/net-ftp/proftpd/files/proftpd-1.3.6_rc4-open-tests.patch deleted file mode 100644 index f65a2cc3fbb..00000000000 --- a/net-ftp/proftpd/files/proftpd-1.3.6_rc4-open-tests.patch +++ /dev/null @@ -1,24 +0,0 @@ -gcc-6.3 + glibc-2.25 now can detect 2-argument open that is supposed to created new files. -diff --git a/tests/api/fsio.c b/tests/api/fsio.c -index 2041f43..18d173b 100644 ---- a/tests/api/fsio.c -+++ b/tests/api/fsio.c -@@ -1058,3 +1058,3 @@ START_TEST (fsio_sys_access_file_test) { - /* Make the file to check; we want it to have perms 664.*/ -- fd = open(fsio_test_path, O_CREAT|O_EXCL|O_WRONLY); -+ fd = open(fsio_test_path, O_CREAT|O_EXCL|O_WRONLY, S_IRUSR | S_IWUSR); - fail_if(fd < 0, "Unable to create file '%s': %s", fsio_test_path, -diff --git a/tests/api/scoreboard.c b/tests/api/scoreboard.c -index f0ffdbc..f26d833 100644 ---- a/tests/api/scoreboard.c -+++ b/tests/api/scoreboard.c -@@ -267,3 +267,3 @@ START_TEST (scoreboard_lock_test) { - -- fd = open(test_file2, O_CREAT|O_EXCL|O_RDWR); -+ fd = open(test_file2, O_CREAT|O_EXCL|O_RDWR, S_IRUSR | S_IWUSR); - fail_unless(fd >= 0, "Failed to open '%s': %s", test_file2, strerror(errno)); -@@ -911,3 +911,3 @@ START_TEST (scoreboard_entry_lock_test) { - -- fd = open(test_file2, O_CREAT|O_EXCL|O_RDWR); -+ fd = open(test_file2, O_CREAT|O_EXCL|O_RDWR, S_IRUSR | S_IWUSR); - fail_unless(fd >= 0, "Failed to open '%s': %s", test_file2, strerror(errno));