summaryrefslogtreecommitdiffstats
path: root/support/export/rmtab.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/export/rmtab.c')
-rw-r--r--support/export/rmtab.c4
1 files changed, 2 insertions, 2 deletions
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);