summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-05-27 21:00:31 +0200
committerThomas Beierlein <tomjbe@gentoo.org>2021-05-29 20:05:41 +0200
commit2edcdac342151bc6741d165a0a11eee894a27fbf (patch)
tree056712fce1f600b592ee2d36060056d717562c55 /media-libs/hamlib
parentdev-util/diffoscope: drop old (diff)
downloadgentoo-2edcdac342151bc6741d165a0a11eee894a27fbf.tar.gz
gentoo-2edcdac342151bc6741d165a0a11eee894a27fbf.tar.bz2
gentoo-2edcdac342151bc6741d165a0a11eee894a27fbf.zip
media-libs/hamlib: remove unused patch(es)
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/21011 Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
Diffstat (limited to 'media-libs/hamlib')
-rw-r--r--media-libs/hamlib/files/hamlib-3.3-format-security.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/media-libs/hamlib/files/hamlib-3.3-format-security.patch b/media-libs/hamlib/files/hamlib-3.3-format-security.patch
deleted file mode 100644
index bbf2de1d17d5..000000000000
--- a/media-libs/hamlib/files/hamlib-3.3-format-security.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-# Fixes build error with format-securety (bug #714682)
-diff --git a/tests/rotctl_parse.c b/tests/rotctl_parse.c
-index 44308cc..aab1300 100644
---- a/tests/rotctl_parse.c
-+++ b/tests/rotctl_parse.c
-@@ -1009,7 +1009,7 @@ int rotctl_parse(ROT *my_rot, FILE *fin, FILE *fout, char *argv[], int argc)
- /* The starting position of the source string is the first
- * character past the initial '\'.
- */
-- snprintf(cmd_name, sizeof(cmd_name), parsed_input[0] + 1);
-+ snprintf(cmd_name, sizeof(cmd_name), "%s", parsed_input[0] + 1);
-
- /* Sanity check as valid multiple character commands consist of
- * alpha-numeric characters and the underscore ('_') character.