Blame SOURCES/autofs-5.1.7-remove-unused-variable-from-get_exports.patch

9a499a
autofs-5.1.7 - remove unused variable from get_exports()
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
Fix complier warning about unused variable entry in get_exports().
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG              |    1 +
9a499a
 modules/lookup_hosts.c |    1 -
9a499a
 2 files changed, 1 insertion(+), 1 deletion(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -49,6 +49,7 @@
9a499a
 - move amd mounts removal into lib/mounts.c.
9a499a
 - check for offset with no mount location.
9a499a
 - remove mounts_mutex.
9a499a
+- remove unused variable from get_exports().
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/modules/lookup_hosts.c
9a499a
+++ autofs-5.1.4/modules/lookup_hosts.c
9a499a
@@ -87,7 +87,6 @@ int lookup_read_master(struct master *ma
9a499a
 static char *get_exports(struct autofs_point *ap, const char *host)
9a499a
 {
9a499a
 	char buf[MAX_ERR_BUF];
9a499a
-	char entry[PATH_MAX + 1];
9a499a
 	char *mapent;
9a499a
 	struct exportinfo *exp, *this;
9a499a
 	size_t hostlen = strlen(host);