Blame SOURCES/autofs-5.1.5-fix-missing-initialization-of-autofs_point-flags.patch

304803
autofs-5.1.5 - fix missing initialization of autofs_point flags
304803
304803
From: Ian Kent <raven@themaw.net>
304803
304803
When adding the "use_ignore_mount_option" configuration option I added
304803
a "use without initialization" for ap->flags.
304803
304803
Signed-off-by: Ian Kent <raven@themaw.net>
304803
---
304803
 CHANGELOG    |    1 +
304803
 lib/master.c |    2 ++
304803
 2 files changed, 3 insertions(+)
304803
304803
--- autofs-5.0.7.orig/CHANGELOG
304803
+++ autofs-5.0.7/CHANGELOG
304803
@@ -349,6 +349,7 @@
304803
 - use local_getmntent_r() for unlink_mount_tree().
304803
 - use local getmntent_r() in get_mnt_list().
304803
 - use local getmntent_r() in tree_make_mnt_list().
304803
+- fix missing initialization of autofs_point flags.
304803
 
304803
 25/07/2012 autofs-5.0.7
304803
 =======================
304803
--- autofs-5.0.7.orig/lib/master.c
304803
+++ autofs-5.0.7/lib/master.c
304803
@@ -101,6 +101,8 @@ int master_add_autofs_point(struct maste
304803
 		ap->negative_timeout = global_negative_timeout;
304803
 	ap->exp_timeout = defaults_get_timeout();
304803
 	ap->exp_runfreq = 0;
304803
+	ap->flags = 0;
304803
+
304803
 	if (defaults_get_use_ignore_mount_option())
304803
 		ap->flags = MOUNT_FLAG_IGNORE;
304803
 	if (ghost)