summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-03-07 17:23:00 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-03-07 19:53:19 +0100
commit36c8ba7f8501ebe4fd3988a5d65db5ccf1deea98 (patch)
tree8ed906df4fbaa58dc2937b61922c5341a99de77a /sci-biology/fasttree/files
parentsci-biology/fasttree: 2.1.11 version bump, EAPI-7, cmake.eclass (diff)
downloadgentoo-36c8ba7f8501ebe4fd3988a5d65db5ccf1deea98.tar.gz
gentoo-36c8ba7f8501ebe4fd3988a5d65db5ccf1deea98.tar.bz2
gentoo-36c8ba7f8501ebe4fd3988a5d65db5ccf1deea98.zip
sci-biology/fasttree: Drop 2.1.8
Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-biology/fasttree/files')
-rw-r--r--sci-biology/fasttree/files/fasttree-2.1.8-format-security.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/sci-biology/fasttree/files/fasttree-2.1.8-format-security.patch b/sci-biology/fasttree/files/fasttree-2.1.8-format-security.patch
deleted file mode 100644
index 15f5c174ec40..000000000000
--- a/sci-biology/fasttree/files/fasttree-2.1.8-format-security.patch
+++ /dev/null
@@ -1,25 +0,0 @@
- FastTreeUPGMA-2.1.8.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/FastTreeUPGMA-2.1.8.c b/FastTreeUPGMA-2.1.8.c
-index af76cb1..4065f42 100644
---- a/FastTreeUPGMA-2.1.8.c
-+++ b/FastTreeUPGMA-2.1.8.c
-@@ -535,7 +535,7 @@ int main(int argc, char **argv) {
- break;
- }
- if(iArg < argc-1) {
-- fprintf(stderr, usage);
-+ fprintf(stderr, "%s", usage);
- exit(1);
- }
-
-@@ -953,7 +953,7 @@ void PrintUPGMA(FILE *fp, UPGMA_t *UPGMA, char **names,
- assert(first >= 0);
- /* Print the name, or the subtree of duplicate names */
- if (nameNext[first] == -1) {
-- fprintf(fp, names[uniqueFirst[node]]);
-+ fprintf(fp, "%s", names[uniqueFirst[node]]);
- } else {
- fprintf(fp,"(%s:0.0",names[first]);
- int iName = nameNext[first];