summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-03-27 13:45:24 +0200
committerConrad Kostecki <conikost@gentoo.org>2022-03-28 00:07:05 +0200
commit6aecaf3e657fbc7bc7746786060cb0b7e0866db0 (patch)
tree89d6b93eb1b3d3a41cc4b07fda89e9027c69202f
parentwww-servers/apache: remove unused patch (diff)
downloadgentoo-6aecaf3e657fbc7bc7746786060cb0b7e0866db0.tar.gz
gentoo-6aecaf3e657fbc7bc7746786060cb0b7e0866db0.tar.bz2
gentoo-6aecaf3e657fbc7bc7746786060cb0b7e0866db0.zip
net-wireless/bluez: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/24775 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r--net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch b/net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch
deleted file mode 100644
index 6644e250cc48..000000000000
--- a/net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 7b41f0c38ab34c9a5eec1a70669d183535e86287 Mon Sep 17 00:00:00 2001
-From: Florian Schmaus <flo@geekplace.eu>
-Date: Fri, 17 Dec 2021 14:05:50 +0100
-Subject: [PATCH] DRAFT shared/att: Use queue_push_tail for
- BT_ATT_OP_READ_BLOB_REQ
-
-As repoorted by Christopher Schramm [1], this is supposed to fix #220.
-
-1: https://github.com/bluez/bluez/issues/220#issuecomment-996669412
-
-Suggested-by: Christopher Schramm <git@cschramm.eu>
----
- src/shared/att.c | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/src/shared/att.c b/src/shared/att.c
-index 169f726e4..5ce735a07 100644
---- a/src/shared/att.c
-+++ b/src/shared/att.c
-@@ -1653,7 +1653,6 @@ int bt_att_resend(struct bt_att *att, unsigned int id, uint8_t opcode,
-
- switch (opcode) {
- /* Only prepend requests that could be a continuation */
-- case BT_ATT_OP_READ_BLOB_REQ:
- case BT_ATT_OP_PREP_WRITE_REQ:
- case BT_ATT_OP_EXEC_WRITE_REQ:
- result = queue_push_head(att->req_queue, op);