summaryrefslogtreecommitdiff
path: root/media-libs/hamlib/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-05-31 20:59:14 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-05-31 20:59:14 +0100
commite748ba9741f6540f4675c23e3e37b73e822c13a4 (patch)
tree23dece8beabb3a3d7c6c0273b0eb40b21c62a889 /media-libs/hamlib/files
parent908778078736bd36f7a60a2d576d415cb8e000fa (diff)
gentoo resync : 31.05.2021
Diffstat (limited to 'media-libs/hamlib/files')
-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.