- remove extra read master map call. - remove extra cache create call in master_add_map_source(). - fix error handing in do_mount_indirect(). - expire thread use pending mutex. - explicity link against the Kerberos library. - remove some log message duplication for verbose logging.
34 lines
887 B
Diff
34 lines
887 B
Diff
autofs-5.0.5 - remove extra read master map call
|
|
|
|
From: Ian Kent <raven@themaw.net>
|
|
|
|
Fix a mistake with a recent patch where a call to lookup_read_master()
|
|
which should have been removed wasn't.
|
|
---
|
|
|
|
CHANGELOG | 1 +
|
|
lib/master.c | 1 -
|
|
2 files changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
--- autofs-5.0.5.orig/CHANGELOG
|
|
+++ autofs-5.0.5/CHANGELOG
|
|
@@ -43,6 +43,7 @@
|
|
- check each dc server individually.
|
|
- fix negative cache included map lookup.
|
|
- remove state machine timed wait.
|
|
+- remove extra read master map call.
|
|
|
|
03/09/2009 autofs-5.0.5
|
|
-----------------------
|
|
--- autofs-5.0.5.orig/lib/master.c
|
|
+++ autofs-5.0.5/lib/master.c
|
|
@@ -840,7 +840,6 @@ int master_read_master(struct master *ma
|
|
lookup_nss_read_master(master, age);
|
|
cache_unlock(nc);
|
|
|
|
- lookup_nss_read_master(master, age);
|
|
if (!master->read_fail)
|
|
master_mount_mounts(master, age, readall);
|
|
else {
|