X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=utils%2Fmountd%2Fcache.c;h=be5198e84c830a8df418fc2e081a1a127e90af55;hp=c5f8093f4da1bd8f64a1ae94d4dab2cefae74cc9;hb=236025253c6ec534cd816390464435ec18c499f7;hpb=005c49a063544b4005b5b7c3c28ed48c197f66ac diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c index c5f8093..be5198e 100644 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -587,7 +587,7 @@ static void nfsd_fh(FILE *f) next_exp = exp->m_next; } - if (!use_ipaddr && !client_member(dom, exp->m_client->m_hostname)) + if (!use_ipaddr && !namelist_client_matches(exp, dom)) continue; if (exp->m_export.e_mountpoint && !is_mountpoint(exp->m_export.e_mountpoint[0]? @@ -597,7 +597,7 @@ static void nfsd_fh(FILE *f) if (!match_fsid(&parsed, exp, path)) continue; - if (use_ipaddr && !client_check(exp->m_client, ai)) + if (use_ipaddr && !ipaddr_client_matches(exp, ai)) continue; if (!found || subexport(&exp->m_export, found)) { found = &exp->m_export; @@ -759,14 +759,6 @@ static int path_matches(nfs_export *exp, char *path) return strcmp(path, exp->m_export.e_path) == 0; } -static int -client_matches(nfs_export *exp, char *dom, struct addrinfo *ai) -{ - if (use_ipaddr) - return client_check(exp->m_client, ai); - return client_member(dom, exp->m_client->m_hostname); -} - static int export_matches(nfs_export *exp, char *dom, char *path, struct addrinfo *ai) {