summaryrefslogtreecommitdiff
path: root/gnu/packages/patches
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-10-13 14:55:59 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2020-10-13 15:02:44 +0200
commit0e5968e49a4d69962c921e70bf477ef5fc15274d (patch)
treef5e9ed2b84504dd3a717ed76c5609c1b5db02567 /gnu/packages/patches
parent3c452a35ef6e34ec9221114713c11fe912adebd5 (diff)
gnu: knot: Update to 3.0.1.
* gnu/packages/dns.scm (knot): Update to 3.0.1. [source]: Remove patch. * gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r--gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch b/gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch
deleted file mode 100644
index 8b57ec522e..0000000000
--- a/gnu/packages/patches/knot-test_net_shortwrite-ensure-connection.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-This patch duplicates upstream commit 4144d1e, which helps ensure the
-"test_net_shortwrite" test suite can succeed across all platforms by
-deepening the pending-connection queue of the server it creates from 0
-to 1.
-
-See the original report at
-https://gitlab.nic.cz/knot/knot-dns/-/issues/693
-
---- a/tests/contrib/test_net_shortwrite.c
-+++ b/tests/contrib/test_net_shortwrite.c
-@@ -88,7 +88,7 @@ int main(int argc, char *argv[])
- int server = net_bound_socket(SOCK_STREAM, &addr, 0);
- ok(server >= 0, "server: bind socket");
-
-- r = listen(server, 0);
-+ r = listen(server, 1);
- ok(r == 0, "server: start listening");
-
- struct sockaddr *sa = (struct sockaddr *)&addr;