From: neilbrown Date: Thu, 24 Aug 2000 03:58:16 +0000 (+0000) Subject: "dot+1" is bogus - it is a DNS domain, not a yp domain X-Git-Tag: nfs-utils-0-2-pre1~7 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=1369ddc35e940c56aafdb73174b6fe7acc631d8f "dot+1" is bogus - it is a DNS domain, not a yp domain --- diff --git a/ChangeLog b/ChangeLog index 3663a64..2c70cdd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-24 Neil Brown + * support/export/client.c(client_check): removed the "dot+1" as a + ypdomain argument to innetgr as this is entirely bogus. + It should always be NULL. + 2000-08-23 Neil Brown * support/export/xtab.c(xtab_read): introduce new mode for diff --git a/support/export/client.c b/support/export/client.c index 8c5200a..a7f9d02 100644 --- a/support/export/client.c +++ b/support/export/client.c @@ -237,7 +237,7 @@ client_check(nfs_client *clp, struct hostent *hp) return 0; *dot = '\0'; - match = innetgr(cname+1, hname, NULL, dot + 1); + match = innetgr(cname+1, hname, NULL, NULL); *dot = '.'; return match;