Blame SOURCES/nfs-utils-1.3.0-exportfs-path-comp.patch

fc3648
diff -up nfs-utils-1.3.0/utils/exportfs/exportfs.c.orig nfs-utils-1.3.0/utils/exportfs/exportfs.c
fc3648
--- nfs-utils-1.3.0/utils/exportfs/exportfs.c.orig	2017-06-15 11:28:59.541764508 -0400
fc3648
+++ nfs-utils-1.3.0/utils/exportfs/exportfs.c	2017-06-15 11:30:04.699701243 -0400
fc3648
@@ -421,6 +421,8 @@ unexportfs_parsed(char *hname, char *pat
fc3648
 		nlen--;
fc3648
 
fc3648
 	for (exp = exportlist[htype].p_head; exp; exp = exp->m_next) {
fc3648
+		if (strlen(exp->m_export.e_path) != nlen)
fc3648
+			continue;
fc3648
 		if (path && strncmp(path, exp->m_export.e_path, nlen))
fc3648
 			continue;
fc3648
 		if (htype != exp->m_client->m_type)