]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - support/export/export.c
Fixes to make unexporting and exporting with wildcards
[nfs-utils.git] / support / export / export.c
index eef2c3b5fcb5a247bb9e74f4c0f1ec97bc969f03..eedbb751b5a505f860572fb77e914e3e29bb1316 100644 (file)
@@ -172,10 +172,9 @@ export_allowed_internal (struct hostent *hp, char *path)
        return NULL;
 }
 
-struct exportent *
+nfs_export *
 export_allowed(struct hostent *hp, char *path)
 {
-       static struct exportent ee;
        nfs_export              *exp;
        char                    epath[MAXPATHLEN+1];
        char                    *p = NULL;
@@ -188,10 +187,8 @@ export_allowed(struct hostent *hp, char *path)
        /* Try the longest matching exported pathname. */
        while (1) {
                exp = export_allowed_internal (hp, epath);
-               if (exp) {
-                       dupexportent(&ee, &exp->m_export);
-                       return ⅇ
-               }
+               if (exp)
+                       return exp;
                /* We have to treat the root, "/", specially. */
                if (p == &epath[1]) break;
                p = strrchr(epath, '/');