+2001-05-06 Anne Milicia <milicia@missioncriticallinux.com>
+
+ * support/export/client.c (client_check): Check IP address
+ againet netgroup.
+
+2001-05-06 Neil Brown <neilb@cse.unsw.edu.au>
+
+ * support/export/client.c (client_gettype): Treat `*' as
+ MCL_ANONYMOUS.
+
2001-04-22 H.J. Lu <hjl@lucon.org>
* nfs-utils.spec.in: Fix a typo.
{
char *dot;
int match;
+ struct hostent *nhp = NULL;
+ struct sockaddr_in addr;
/* First, try to match the hostname without
* splitting off the domain */
if (innetgr(cname+1, hname, NULL, NULL))
return 1;
+ /* If hname is ip address convert to FQDN */
+ if (inet_aton(hname, &addr.sin_addr) &&
+ (nhp = gethostbyaddr((const char *)&(addr.sin_addr),
+ sizeof(addr.sin_addr), AF_INET))) {
+ hname = (char *)nhp->h_name;
+ if (innetgr(cname+1, hname, NULL, NULL))
+ return 1;
+ }
+
/* Okay, strip off the domain (if we have one) */
if ((dot = strchr(hname, '.')) == NULL)
return 0;
{
char *sp;
- if (ident[0] == '\0')
+ if (ident[0] == '\0' || strcmp(ident, "*")==0)
return MCL_ANONYMOUS;
if (ident[0] == '@') {
#ifndef HAVE_INNETGR