summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/fping/files/fping-4.2-fping6-6.patch')
-rw-r--r--net-analyzer/fping/files/fping-4.2-fping6-6.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/net-analyzer/fping/files/fping-4.2-fping6-6.patch b/net-analyzer/fping/files/fping-4.2-fping6-6.patch
deleted file mode 100644
index 63138d3e2d2c..000000000000
--- a/net-analyzer/fping/files/fping-4.2-fping6-6.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From 6fd4f8bd91abc43f80078bdd0084cb6d2b1de7f1 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Johan=20Str=C3=B6m?= <johan@stromnet.se>
-Date: Tue, 25 Jun 2019 14:03:14 +0200
-Subject: [PATCH] Do not fail if using fping6 with -6 flag
-
-Mostly for backwards compatability
----
- src/fping.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/src/fping.c
-+++ b/src/fping.c
-@@ -435,7 +435,7 @@
- break;
- case '6':
- #ifdef IPV6
-- if (hints_ai_family != AF_UNSPEC) {
-+ if (hints_ai_family != AF_UNSPEC && hints_ai_family != AF_INET6) {
- fprintf(stderr, "%s: can't specify both -4 and -6\n", prog);
- exit(1);
- }