Re: mass rebuild plan

2014-09-29 Thread Andrea Musuruane
On Mon, Sep 1, 2014 at 3:16 AM, Sérgio Basto  wrote:

> Hi,
> Have been submitted all packages from group 2 (packages that haven't
> fc21 ) [1] e [2] , now I'm going check group 3 [3] e [4] ...
>
> So far we got this FTBFS (please try to fix the issues) :
>
> http://buildsys.rpmfusion.org/logs/fedora-development-rpmfusion_nonfree/21044-e-uae-0.8.29-0.18.wip4.fc21/x86_64/build.log
>

Fixed.


>
> http://buildsys.rpmfusion.org/logs/fedora-development-rpmfusion_nonfree/21060-meka-0.80-0.6.20130725svn.fc21/x86_64/build.log
>

Working on this.


>
> http://buildsys.rpmfusion.org/logs/fedora-development-rpmfusion_nonfree/21069-roadfighter-1.0.1269-7.fc21/i686/build.log
>

I have no idea how to fix this issue. I need help. Thanks.

Bye,

Andrea


Re: mass rebuild plan

2014-09-29 Thread Andrew Schultz

Andrea Musuruane wrote:

On Mon, Sep 1, 2014 at 3:16 AM, Sérgio Basto mailto:ser...@serjux.com>> wrote:


http://buildsys.rpmfusion.org/logs/fedora-development-rpmfusion_nonfree/21069-roadfighter-1.0.1269-7.fc21/i686/build.log


I have no idea how to fix this issue. I need help. Thanks.


src/debug.cpp: In function 'void output_debug_message(const char*, ...)':
src/debug.cpp:31:21: error: format not a string literal and no format 
arguments [-Werror=format-security]

 fprintf(fp, text);
 ^

This is broken from https://fedoraproject.org/wiki/Changes/FormatSecurity

There's a page with info on what it means and how to fix it:
https://fedoraproject.org/wiki/Format-Security-FAQ

--
Andrew Schultz
ajsch...@verizon.net
http://www.sens.buffalo.edu/~ajs42/


Re: mass rebuild plan

2014-09-29 Thread Sérgio Basto
On Seg, 2014-09-29 at 11:06 -0400, Andrew Schultz wrote: 
> Andrea Musuruane wrote:
> > On Mon, Sep 1, 2014 at 3:16 AM, Sérgio Basto  > > wrote:
> >
> > 
> > http://buildsys.rpmfusion.org/logs/fedora-development-rpmfusion_nonfree/21069-roadfighter-1.0.1269-7.fc21/i686/build.log
> >
> >
> > I have no idea how to fix this issue. I need help. Thanks.
> 
> src/debug.cpp: In function 'void output_debug_message(const char*, ...)':
> src/debug.cpp:31:21: error: format not a string literal and no format 
> arguments [-Werror=format-security]
>   fprintf(fp, text);
>   ^

is easy :
-  printf(fp, text); 
+  printf(fp, "%s", text);


> This is broken from https://fedoraproject.org/wiki/Changes/FormatSecurity
> 
> There's a page with info on what it means and how to fix it:
> https://fedoraproject.org/wiki/Format-Security-FAQ
> 

-- 
Sérgio M. B.