summaryrefslogtreecommitdiffstats
path: root/support/export/export.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/export/export.c')
-rw-r--r--support/export/export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/export/export.c b/support/export/export.c
index 4cfb448..f95e729 100644
--- a/support/export/export.c
+++ b/support/export/export.c
@@ -32,7 +32,7 @@ export_read(char *fname)
nfs_export *exp;
setexportent(fname, "r");
- while ((eep = getexportent()) != NULL) {
+ while ((eep = getexportent(0)) != NULL) {
exp = export_lookup(eep->e_hostname, eep->e_path, 0);
if (!exp)
export_create(eep,0);