- fix return check for getpwuid_r and getgrgid_r. - patch to give up trying to update exports list while host is mounted. - fix to "@network" matching. - patch to check for fstab update and retry if not updated.
26 lines
741 B
Diff
26 lines
741 B
Diff
diff --git a/CHANGELOG b/CHANGELOG
|
|
index d416684..0bb91e9 100644
|
|
--- a/CHANGELOG
|
|
+++ b/CHANGELOG
|
|
@@ -1,6 +1,7 @@
|
|
??/??/2007 autofs-5.0.2
|
|
-----------------------
|
|
- fix return check for getpwuid_r and getgrgid_r.
|
|
+- give up trying to update exports list while host is mounted.
|
|
|
|
20/2/2007 autofs-5.0.1
|
|
----------------------
|
|
diff --git a/modules/lookup_hosts.c b/modules/lookup_hosts.c
|
|
index 1a16b96..8855ed7 100644
|
|
--- a/modules/lookup_hosts.c
|
|
+++ b/modules/lookup_hosts.c
|
|
@@ -189,7 +189,7 @@ int lookup_mount(struct autofs_point *ap, const char *name, int name_len, void *
|
|
if (!ret)
|
|
return NSS_STATUS_SUCCESS;
|
|
|
|
- debug(ap->logopt, MODPREFIX "mount failed - update exports list");
|
|
+ return NSS_STATUS_TRYAGAIN;
|
|
}
|
|
done:
|
|
/*
|