From 6ece45a64e622511855ff6e00c976f8e8104c5d3 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sun, 21 Feb 2021 12:04:03 +0100 Subject: net-mail/mailutils: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/19572 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger Signed-off-by: Conrad Kostecki --- .../mailutils/files/mailutils-3.10-get_size.patch | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 net-mail/mailutils/files/mailutils-3.10-get_size.patch (limited to 'net-mail') diff --git a/net-mail/mailutils/files/mailutils-3.10-get_size.patch b/net-mail/mailutils/files/mailutils-3.10-get_size.patch deleted file mode 100644 index 3ec15968916b..000000000000 --- a/net-mail/mailutils/files/mailutils-3.10-get_size.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 37713b42a501892469234b90454731d8d8b7a3e6 Mon Sep 17 00:00:00 2001 -From: Sergey Poznyakoff -Date: Mon, 17 Aug 2020 20:34:21 +0300 -Subject: Bugfix (complements fd9a86d37b) - -* mda/lib/mailquota.c (sql_retrieve_quota): Fix a leftover use of -get_size. ---- - mda/lib/mailquota.c | 12 +++--------- - 1 file changed, 3 insertions(+), 9 deletions(-) - -diff --git a/mda/lib/mailquota.c b/mda/lib/mailquota.c -index 7b7dd52d9..af719a591 100644 ---- a/mda/lib/mailquota.c -+++ b/mda/lib/mailquota.c -@@ -270,16 +270,10 @@ sql_retrieve_quota (char *name, mu_off_t *quota) - } - else if (tmp == NULL || tmp[0] == 0 || mu_c_strcasecmp (tmp, "none") == 0) - rc = RETR_UNLIMITED; -- else -+ else if (get_quota (quota, tmp)) - { -- char *p; -- -- if (get_size (tmp, quota, &p)) -- { -- mu_error (_("bogus mailbox quota for `%s' (near `%s')"), -- name, p); -- *quota = groupquota; -- } -+ *quota = groupquota; -+ rc = RETR_OK; - } - } - --- -cgit v1.2.1 - -- cgit v1.2.3-65-gdbad