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 4F3A3139085 for ; Thu, 22 Dec 2016 15:47:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7ABEEE0D86; Thu, 22 Dec 2016 15:47:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41336E0CF5 for ; Thu, 22 Dec 2016 15:47:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4AB843411D7 for ; Thu, 22 Dec 2016 15:47:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4584024DE for ; Thu, 22 Dec 2016 15:47:11 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1482421615.c4c95f9073623d46cc79a277078e2f65dbe9e40a.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/mailx-support/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/mailx-support/files/mailx-support-20030215-gentoo.patch X-VCS-Directories: mail-client/mailx-support/files/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: c4c95f9073623d46cc79a277078e2f65dbe9e40a X-VCS-Branch: master Date: Thu, 22 Dec 2016 15:47: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: 96d53249-ecea-490d-b195-d1e6f6c8dd9f X-Archives-Hash: 251f852c2167e88f5d13574b9de3373a commit: c4c95f9073623d46cc79a277078e2f65dbe9e40a Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Tue Dec 13 20:19:31 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Dec 22 15:46:55 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4c95f90 mail-client/mailx-support: remove unused patch .../files/mailx-support-20030215-gentoo.patch | 66 ---------------------- 1 file changed, 66 deletions(-) diff --git a/mail-client/mailx-support/files/mailx-support-20030215-gentoo.patch b/mail-client/mailx-support/files/mailx-support-20030215-gentoo.patch deleted file mode 100644 index 829b858..00000000 --- a/mail-client/mailx-support/files/mailx-support-20030215-gentoo.patch +++ /dev/null @@ -1,66 +0,0 @@ ---- - 2003-02-15 23:35:46.000000000 +0800 -+++ locking.c 2003-02-15 23:19:11.000000000 +0800 -@@ -45,6 +45,7 @@ - #include - #include "pathnames.h" - #include "mail.local.h" -+#include "open_with_exlock.h" - - static char lpath[MAXPATHLEN]; - -@@ -93,7 +94,7 @@ - } - goto again; - } -- if ((lfd = open(lpath, O_CREAT|O_WRONLY|O_EXCL|O_EXLOCK, -+ if ((lfd = open_with_exlock(lpath, O_CREAT|O_WRONLY|O_EXCL, - S_IRUSR|S_IWUSR)) != -1) - break; - again: -@@ -104,7 +105,7 @@ - return(-1); - } - if (tries > 9 && -- (lfd = open(lpath, O_WRONLY|O_EXLOCK, 0)) != -1) { -+ (lfd = open_with_exlock(lpath, O_WRONLY, 0)) != -1) { - if (fstat(lfd, &fsb) != -1 && - lstat(lpath, &sb) != -1) { - if (fsb.st_dev == sb.st_dev && -@@ -169,3 +170,4 @@ - if (isfatal) - exit(1); - } -+ ---- - 2003-02-15 23:37:13.000000000 +0800 -+++ mail.local.c 2003-02-15 23:20:50.000000000 +0800 -@@ -66,6 +66,7 @@ - #include - #include "pathnames.h" - #include "mail.local.h" -+#include "open_with_exlock.h" - - int - main(int argc, char *argv[]) -@@ -218,7 +219,7 @@ - merr(NOTFATAL, "%s: %s", path, strerror(errno)); - goto bad; - } -- if ((mbfd = open(path, O_APPEND|O_CREAT|O_EXCL|O_WRONLY|O_EXLOCK, -+ if ((mbfd = open_with_exlock(path, O_APPEND|O_CREAT|O_EXCL|O_WRONLY, - S_IRUSR|S_IWUSR)) < 0) { - if (errno == EEXIST) { - /* file appeared since lstat */ -@@ -244,7 +245,7 @@ - merr(NOTFATAL, "%s: linked or special file", path); - goto bad; - } -- if ((mbfd = open(path, O_APPEND|O_WRONLY|O_EXLOCK, -+ if ((mbfd = open_with_exlock(path, O_APPEND|O_WRONLY, - S_IRUSR|S_IWUSR)) < 0) { - merr(NOTFATAL, "%s: %s", path, strerror(errno)); - goto bad; -@@ -340,3 +341,4 @@ - { - merr(FATAL, "usage: mail.local [-lL] [-f from] user ..."); - } -+