autofs-5.1.9 - fix copy numeric fields in dup_defaults_entry()

From: Ian Kent <raven@themaw.net>

Also copy additional numeric variables in dup_defaults_entry().

Fixes: 6cbb6e9a3b8b ("autofs-5.1.9 - add some unimplemented amd map options")
Fixes: a2002247e16e ("autofs-5.1.9 - seperate amd mount and entry flags")
Signed-off-by: Ian Kent <raven@themaw.net>
---
 modules/parse_amd.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/parse_amd.c b/modules/parse_amd.c
index 0f68ade3a..2371beb80 100644
--- a/modules/parse_amd.c
+++ b/modules/parse_amd.c
@@ -1971,6 +1971,8 @@ static struct amd_entry *dup_defaults_entry(struct amd_entry *defaults)
 
 	entry->flags = defaults->flags;
 	entry->cache_opts = defaults->cache_opts;
+	entry->utimeout = defaults->utimeout;
+	entry->entry_flags = defaults->entry_flags;
 
 	if (defaults->path) {
 		tmp = strdup(defaults->path);
