- fix typo in libtirpc file name. - fix rework error return handling in rpc code. - allow MOUNT_WAIT to override probe. - improve UDP RPC timeout handling. - fix segfault in get_query_dn(). - use strtok_r() in linux_version_code(). - fix sss wildcard match. - fix dlopen() error handling in sss module. - fix configure string length tests for sss library.
37 lines
1005 B
Diff
37 lines
1005 B
Diff
autofs-5.0.6 - fix typo in libtirpc file name
|
|
|
|
From: Leonardo Chiquitto <leonardo.lists@gmail.com>
|
|
|
|
The library file name was misspelled as libitirpc.so.
|
|
---
|
|
|
|
CHANGELOG | 1 +
|
|
daemon/automount.c | 4 ++--
|
|
2 files changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
|
|
--- autofs-5.0.6.orig/CHANGELOG
|
|
+++ autofs-5.0.6/CHANGELOG
|
|
@@ -32,6 +32,7 @@
|
|
- systemd support fixes.
|
|
- check scandir() return value.
|
|
- fix function to check mount.nfs version.
|
|
+- fix typo in libtirpc file name.
|
|
|
|
28/06/2011 autofs-5.0.6
|
|
-----------------------
|
|
--- autofs-5.0.6.orig/daemon/automount.c
|
|
+++ autofs-5.0.6/daemon/automount.c
|
|
@@ -2232,9 +2232,9 @@ int main(int argc, char *argv[])
|
|
xmlInitParser();
|
|
#endif
|
|
#ifdef TIRPC_WORKAROUND
|
|
- void *dh_tirpc = dlopen("libitirpc.so", RTLD_NOW);
|
|
+ void *dh_tirpc = dlopen("libtirpc.so", RTLD_NOW);
|
|
if (!dh_tirpc)
|
|
- dh_tirpc = dlopen("libitirpc.so.1", RTLD_NOW);
|
|
+ dh_tirpc = dlopen("libtirpc.so.1", RTLD_NOW);
|
|
#endif
|
|
|
|
if (!master_read_master(master_list, age, 0)) {
|