diff options
author | obrien <obrien@FreeBSD.org> | 2004-11-01 16:32:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-11-01 16:32:09 +0000 |
commit | d35dbc74e3458366394f33140c5ad663a422bff2 (patch) | |
tree | 98062927216082900ff86927eff686a5463a216b /usr.sbin/sade | |
parent | 75e4d56d9fbebf759a7f5337aa9413eefe66553e (diff) | |
download | FreeBSD-src-d35dbc74e3458366394f33140c5ad663a422bff2.zip FreeBSD-src-d35dbc74e3458366394f33140c5ad663a422bff2.tar.gz |
fix typo in generated /etc/exports: escape all '
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sade/config.c b/usr.sbin/sade/config.c index 8b5c48f..5eaaf24 100644 --- a/usr.sbin/sade/config.c +++ b/usr.sbin/sade/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 syntax 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(); |