From 1369ddc35e940c56aafdb73174b6fe7acc631d8f Mon Sep 17 00:00:00 2001 From: neilbrown Date: Thu, 24 Aug 2000 03:58:16 +0000 Subject: [PATCH 1/1] "dot+1" is bogus - it is a DNS domain, not a yp domain --- ChangeLog | 5 +++++ support/export/client.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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; -- 2.39.2