summaryrefslogtreecommitdiffstats
path: root/support/export/export.c
diff options
context:
space:
mode:
authorneilbrown <neilbrown>1999-10-28 02:27:55 +0000
committerneilbrown <neilbrown>1999-10-28 02:27:55 +0000
commitacc4cade1891c0b07f3e0016ff3c5b604b042c86 (patch)
treec319d7d853e4466f465192afd5bfce4f9ffd9cfc /support/export/export.c
parent389610b2a817878802d25bd82919a79382b702ab (diff)
downloadnfs-utils-acc4cade1891c0b07f3e0016ff3c5b604b042c86.tar.gz
nfs-utils-acc4cade1891c0b07f3e0016ff3c5b604b042c86.tar.xz
nfs-utils-acc4cade1891c0b07f3e0016ff3c5b604b042c86.zip
Thu Oct 28 11:27:51 EST 1999 Neil Brown <neilb@cse.unsw.edu.au>
* support/include/nfs/export.h addedd NFSEXP_NOSUBTREECHECK * support/nfs/exports.c: added {no_,}subtree_check and changed crossmnt to nohide * utils/exportfs/exports.man: added no_subtree_check and nohide and removed irrelevant stuff from unfsd. * support/export/rmtab.c: rmtab_read didn't quite do the right thing if a pathname from rmtab was a subdirectory of an export-point
Diffstat (limited to 'support/export/export.c')
-rw-r--r--support/export/export.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/export/export.c b/support/export/export.c
index 09efaa8..ef12056 100644
--- a/support/export/export.c
+++ b/support/export/export.c
@@ -38,14 +38,14 @@ export_read(char *fname)
export_create(eep);
else {
if (exp->m_export.e_flags != eep->e_flags) {
- xlog(L_ERROR, "incompatible dupilcated export entries:");
+ xlog(L_ERROR, "incompatible duplicated export entries:");
xlog(L_ERROR, "\t%s:%s (0x%x) [IGNORED]", eep->e_hostname,
eep->e_path, eep->e_flags);
xlog(L_ERROR, "\t%s:%s (0x%x)", exp->m_export.e_hostname,
exp->m_export.e_path, exp->m_export.e_flags);
}
else {
- xlog(L_ERROR, "dupilcated export entries:");
+ xlog(L_ERROR, "duplicated export entries:");
xlog(L_ERROR, "\t%s:%s", eep->e_hostname, eep->e_path);
xlog(L_ERROR, "\t%s:%s", exp->m_export.e_hostname,
exp->m_export.e_path);