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 585985 Details for
Bug 821847
Using /net to access a NFS share leads to a segfault
[?]
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]
Patch - fix libtirpc name clash
autofs-5.0.6-fix-libtirpc-name-clash.patch (text/plain), 1.40 KB, created by
Ian Kent
on 2012-05-22 10:05:35 UTC
(
hide
)
Description:
Patch - fix libtirpc name clash
Filename:
MIME Type:
Creator:
Ian Kent
Created:
2012-05-22 10:05:35 UTC
Size:
1.40 KB
patch
obsolete
>autofs-5.0.6 - fix libtirpc name clash > >From: Ian Kent <ikent@redhat.com> > >The tirpc function auth_destroy() is a macro definition in tirpc/rpc/auth.h >which includes an unconditional call to a function log_debug() which clashes >with an autofs function of the same name and has a different call signature. > >To fix it redefine auth_destroy() and exclude the debug log call. >--- > > CHANGELOG | 1 + > lib/rpc_subs.c | 10 ++++++++++ > 2 files changed, 11 insertions(+) > > >--- autofs-5.0.6.orig/CHANGELOG >+++ autofs-5.0.6/CHANGELOG >@@ -41,6 +41,7 @@ > - fix dlopen() error handling in sss module. > - fix configure string length tests for sss library. > - fix initialization in rpc create_client(). >+- fix libtirpc name clash. > > 28/06/2011 autofs-5.0.6 > ----------------------- >--- autofs-5.0.6.orig/lib/rpc_subs.c >+++ autofs-5.0.6/lib/rpc_subs.c >@@ -34,6 +34,16 @@ > #include <pthread.h> > #include <poll.h> > >+#ifdef WITH_LIBTIRPC >+#undef auth_destroy >+#define auth_destroy(auth) \ >+ do { \ >+ int refs; \ >+ if ((refs = auth_put((auth))) == 0) \ >+ ((*((auth)->ah_ops->ah_destroy))(auth));\ >+ } while (0) >+#endif >+ > #include "mount.h" > #include "rpc_subs.h" > #include "automount.h"
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 821847
:
585779
|
585787
|
585984
| 585985