Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/fasttree/files: fasttree-2.1.8-format-security.patch fasttree-2.1.7-format-security.patch fasttree-2.0.1-asneeded.patch
Date: Sun, 29 Mar 2015 14:30:39
Message-Id: 20150329143036.E7FE114C7C@oystercatcher.gentoo.org
1 jlec 15/03/29 14:30:36
2
3 Added: fasttree-2.1.8-format-security.patch
4 fasttree-2.1.7-format-security.patch
5 Removed: fasttree-2.0.1-asneeded.patch
6 Log:
7 Version BUmp; drop old
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
10
11 Revision Changes Path
12 1.1 sci-biology/fasttree/files/fasttree-2.1.8-format-security.patch
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/fasttree/files/fasttree-2.1.8-format-security.patch?rev=1.1&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/fasttree/files/fasttree-2.1.8-format-security.patch?rev=1.1&content-type=text/plain
16
17 Index: fasttree-2.1.8-format-security.patch
18 ===================================================================
19 FastTreeUPGMA-2.1.8.c | 4 ++--
20 1 file changed, 2 insertions(+), 2 deletions(-)
21
22 diff --git a/FastTreeUPGMA-2.1.8.c b/FastTreeUPGMA-2.1.8.c
23 index af76cb1..4065f42 100644
24 --- a/FastTreeUPGMA-2.1.8.c
25 +++ b/FastTreeUPGMA-2.1.8.c
26 @@ -535,7 +535,7 @@ int main(int argc, char **argv) {
27 break;
28 }
29 if(iArg < argc-1) {
30 - fprintf(stderr, usage);
31 + fprintf(stderr, "%s", usage);
32 exit(1);
33 }
34
35 @@ -953,7 +953,7 @@ void PrintUPGMA(FILE *fp, UPGMA_t *UPGMA, char **names,
36 assert(first >= 0);
37 /* Print the name, or the subtree of duplicate names */
38 if (nameNext[first] == -1) {
39 - fprintf(fp, names[uniqueFirst[node]]);
40 + fprintf(fp, "%s", names[uniqueFirst[node]]);
41 } else {
42 fprintf(fp,"(%s:0.0",names[first]);
43 int iName = nameNext[first];
44
45
46
47 1.1 sci-biology/fasttree/files/fasttree-2.1.7-format-security.patch
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/fasttree/files/fasttree-2.1.7-format-security.patch?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/fasttree/files/fasttree-2.1.7-format-security.patch?rev=1.1&content-type=text/plain
51
52 Index: fasttree-2.1.7-format-security.patch
53 ===================================================================
54 FastTreeUPGMA-2.1.7.c | 4 ++--
55 1 file changed, 2 insertions(+), 2 deletions(-)
56
57 diff --git a/FastTreeUPGMA-2.1.7.c b/FastTreeUPGMA-2.1.7.c
58 index af76cb1..4065f42 100644
59 --- a/FastTreeUPGMA-2.1.7.c
60 +++ b/FastTreeUPGMA-2.1.7.c
61 @@ -535,7 +535,7 @@ int main(int argc, char **argv) {
62 break;
63 }
64 if(iArg < argc-1) {
65 - fprintf(stderr, usage);
66 + fprintf(stderr, "%s", usage);
67 exit(1);
68 }
69
70 @@ -953,7 +953,7 @@ void PrintUPGMA(FILE *fp, UPGMA_t *UPGMA, char **names,
71 assert(first >= 0);
72 /* Print the name, or the subtree of duplicate names */
73 if (nameNext[first] == -1) {
74 - fprintf(fp, names[uniqueFirst[node]]);
75 + fprintf(fp, "%s", names[uniqueFirst[node]]);
76 } else {
77 fprintf(fp,"(%s:0.0",names[first]);
78 int iName = nameNext[first];