Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 835643 Details for
Bug 1036985
ale FTBFS if "-Werror=format-security" flag is used
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
FTBFS fix
ale-0.9.0.1-format-security.patch (text/plain), 1.32 KB, created by
Dhiru Kholia
on 2013-12-12 07:19:44 UTC
(
hide
)
Description:
FTBFS fix
Filename:
MIME Type:
Creator:
Dhiru Kholia
Created:
2013-12-12 07:19:44 UTC
Size:
1.32 KB
patch
obsolete
>diff --git a/ui/implication.h b/ui/implication.h >index 845b74f..84f2e43 100644 >--- a/ui/implication.h >+++ b/ui/implication.h >@@ -33,16 +33,16 @@ public: > static void changed(const char *description, const char *changes, const char *option = NULL) { > fprintf(stderr, "\n\n"); > fprintf(stderr, "Program options have been automatically modified to satisfy the following:\n\n"); >- fprintf(stderr, description); >+ fprintf(stderr, "%s", description); > fprintf(stderr, "\n\n"); > > fprintf(stderr, "Changes are as follows:\n\n"); >- fprintf(stderr, changes); >+ fprintf(stderr, "%s", changes); > fprintf(stderr, "\n\n"); > > if (option) { > fprintf(stderr, "This is equivalent to manually setting the following options:\n\n"); >- fprintf(stderr, option); >+ fprintf(stderr, "%s", option); > fprintf(stderr, "\n\n"); > } > } >diff --git a/ui/unsupported.h b/ui/unsupported.h >index cf8dfed..00e6705 100644 >--- a/ui/unsupported.h >+++ b/ui/unsupported.h >@@ -32,7 +32,7 @@ public: > static void fornow(const char *description) { > fprintf(stderr, "\n\n"); > fprintf(stderr, "The following feature is currently unsupported:\n\n"); >- fprintf(stderr, description); >+ fprintf(stderr, "%s", description); > fprintf(stderr, "\n\n"); > #if 0 > fprintf(stderr, "For more information, see http://auricle.dyndns.org/ALE/unsupported/currently/\n\n");
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1036985
: 835643 |
835644