summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-02-21 12:04:03 +0100
committerConrad Kostecki <conikost@gentoo.org>2021-02-21 22:27:10 +0100
commit6ece45a64e622511855ff6e00c976f8e8104c5d3 (patch)
tree9a6944a379da947950f233e13732440f2e00faa7 /net-mail
parentdev-lua/penlight: add lua5-4 support (diff)
downloadgentoo-6ece45a64e622511855ff6e00c976f8e8104c5d3.tar.gz
gentoo-6ece45a64e622511855ff6e00c976f8e8104c5d3.tar.bz2
gentoo-6ece45a64e622511855ff6e00c976f8e8104c5d3.zip
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 <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mailutils/files/mailutils-3.10-get_size.patch38
1 files changed, 0 insertions, 38 deletions
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 <gray@gnu.org>
-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
-