- add command line option to override is running check. - don't use proc fs for is running check. - fix fail on included browse map not found. - fix incorrect multi source messages. - clear stale flag on map read. - fix proximity other rpc ping timeout. - refactor mount request vars code. - make handle_mounts startup condition distinct. - fix submount shutdown handling. - try not to block on expire. - add configuration paramter UMOUNT_WAIT. - fix multi mount race. - fix nfs4 colon escape handling. - check replicated list after probe. - add replicated server selection debug logging. - update replicated server selection documentation. - use /dev/urandom instead of /dev/random. - check for mtab pointing to /proc/mounts. - fix interface config buffer size. - fix percent hack heap corruption.
27 lines
665 B
Diff
27 lines
665 B
Diff
autofs-5.0.3 - fix fail on included browse map not found
|
|
|
|
From: Ian Kent <raven@themaw.net>
|
|
|
|
When looking up nsswitch sources, if nsswitch action check tells us
|
|
to continue we need to set the returned result to success so we
|
|
don't return a false failure.
|
|
---
|
|
|
|
daemon/lookup.c | 2 ++
|
|
1 files changed, 2 insertions(+), 0 deletions(-)
|
|
|
|
|
|
diff --git a/daemon/lookup.c b/daemon/lookup.c
|
|
index 29a1491..3c22a35 100644
|
|
--- a/daemon/lookup.c
|
|
+++ b/daemon/lookup.c
|
|
@@ -545,6 +545,8 @@ int lookup_nss_read_map(struct autofs_point *ap, struct map_source *source, time
|
|
map = NULL;
|
|
break;
|
|
}
|
|
+
|
|
+ result = NSS_STATUS_SUCCESS;
|
|
}
|
|
pthread_cleanup_pop(1);
|
|
|