diff options
author | rse <rse@FreeBSD.org> | 2004-10-04 15:13:51 +0000 |
---|---|---|
committer | rse <rse@FreeBSD.org> | 2004-10-04 15:13:51 +0000 |
commit | ec69c004dc74ad1718d19e4ac05ec3a884e6c37f (patch) | |
tree | f61098f3fabe29b6b3d5298206e1b71b6a9adb72 /usr.sbin/sysinstall/config.c | |
parent | 26afc75c0399b9b9b70236accab699b0374aa19c (diff) | |
download | FreeBSD-src-ec69c004dc74ad1718d19e4ac05ec3a884e6c37f.zip FreeBSD-src-ec69c004dc74ad1718d19e4ac05ec3a884e6c37f.tar.gz |
fix typo in generated /etc/exports: s/synatx/syntax/
Diffstat (limited to 'usr.sbin/sysinstall/config.c')
-rw-r--r-- | usr.sbin/sysinstall/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c index acfde5b..8b5c48f 100644 --- a/usr.sbin/sysinstall/config.c +++ b/usr.sbin/sysinstall/config.c @@ -876,7 +876,7 @@ configNFSServer(dialogMenuItem *self) vsystem("echo '#/a -maproot=0 -network 10.0.1.0 -mask 255.255.248.0' >> /etc/exports"); vsystem("echo '#' >> /etc/exports"); vsystem("echo '# You should replace these lines with your actual exported filesystems.' >> /etc/exports"); - vsystem("echo '# Note that BSD's export synatx is \"host-centric\" vs. Sun\'s \"FS-centric\" one.' >> /etc/exports"); + vsystem("echo '# Note that BSD's export syntax is \"host-centric\" vs. Sun\'s \"FS-centric\" one.' >> /etc/exports"); vsystem("echo >> /etc/exports"); sprintf(cmd, "%s /etc/exports", variable_get(VAR_EDITOR)); dialog_clear(); |