From 37e49789ab1cd849def25ba4c4d97ccdb11d1e61 Mon Sep 17 00:00:00 2001 From: neilbrown Date: Thu, 20 Sep 2001 00:37:14 +0000 Subject: make "exportfs -au" do no DNS lookup --- support/export/rmtab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'support/export/rmtab.c') diff --git a/support/export/rmtab.c b/support/export/rmtab.c index 4e141c3..3c55267 100644 --- a/support/export/rmtab.c +++ b/support/export/rmtab.c @@ -37,12 +37,12 @@ rmtab_read(void) /* see if the entry already exists, otherwise this was an instantiated * wild card, and we must add it */ - exp = export_lookup(rep->r_client, xp->e_path); + exp = export_lookup(rep->r_client, xp->e_path, 0); if (!exp) { strncpy (xp->e_hostname, rep->r_client, sizeof (xp->e_hostname) - 1); xp->e_hostname[sizeof (xp->e_hostname) -1] = '\0'; - exp = export_create(xp); + exp = export_create(xp, 0); } free (hp); -- cgit