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 579824 Details for
Bug 815719
Fix build with gcc version 4.7.0
[?]
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]
Fix build with gcc version 4.7.0
Fix-build-with-gcc-version-470.patch (text/plain), 1.01 KB, created by
Stef Walter
on 2012-04-24 11:08:35 UTC
(
hide
)
Description:
Fix build with gcc version 4.7.0
Filename:
MIME Type:
Creator:
Stef Walter
Created:
2012-04-24 11:08:35 UTC
Size:
1.01 KB
patch
obsolete
>From 1ff71becd707edf14b439f9ce157eb2fe2102265 Mon Sep 17 00:00:00 2001 >From: Stef Walter <stefw@gnome.org> >Date: Tue, 24 Apr 2012 13:05:28 +0200 >Subject: [PATCH] Fix build with gcc version 4.7.0 > > * Union was initialized incorrectly > >https://bugzilla.redhat.com/show_bug.cgi?id=815719 >--- > policycoreutils/setfiles/restore.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/policycoreutils/setfiles/restore.c b/policycoreutils/setfiles/restore.c >index 9a7d315..bf086b6 100644 >--- a/policycoreutils/setfiles/restore.c >+++ b/policycoreutils/setfiles/restore.c >@@ -59,8 +59,8 @@ void restore_init(struct restore_opts *opts) > { > r_opts = opts; > struct selinux_opt selinux_opts[] = { >- { SELABEL_OPT_VALIDATE, r_opts->selabel_opt_validate }, >- { SELABEL_OPT_PATH, r_opts->selabel_opt_path } >+ { SELABEL_OPT_VALIDATE, { r_opts->selabel_opt_validate } }, >+ { SELABEL_OPT_PATH, { r_opts->selabel_opt_path } } > }; > r_opts->hnd = selabel_open(SELABEL_CTX_FILE, selinux_opts, 2); > if (!r_opts->hnd) { >-- >1.7.10
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 815719
:
579823
| 579824