diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-11 20:38:04 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-11 20:38:04 +0100 |
commit | 651fa5bd50c10a13cc970b9bd0ef1c6ea3c5f62a (patch) | |
tree | 1d6aafb2681e4526fe2b188ea707bc6eb6b152b7 | |
parent | 854d028db99d81752082028700bd7ada53306424 (diff) | |
download | plan9front-651fa5bd50c10a13cc970b9bd0ef1c6ea3c5f62a.tar.xz |
cfs: change default mountpoint to /mnt/cfs and fix the manual (thanks mischief)
-rw-r--r-- | sys/man/4/cfs | 2 | ||||
-rw-r--r-- | sys/src/cmd/cfs/cfs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/man/4/cfs b/sys/man/4/cfs index 7d466e1e0..d5bd6933b 100644 --- a/sys/man/4/cfs +++ b/sys/man/4/cfs @@ -43,7 +43,7 @@ information for that file. mounts onto .I mtpt (default -.BR / ) +.BR /mnt/cfs ) after connecting to the file server. .PP The options are: diff --git a/sys/src/cmd/cfs/cfs.c b/sys/src/cmd/cfs/cfs.c index a7f8a215d..b11448be8 100644 --- a/sys/src/cmd/cfs/cfs.c +++ b/sys/src/cmd/cfs/cfs.c @@ -136,7 +136,7 @@ main(int argc, char *argv[]) chkid = 1; part = "/dev/sdC0/cache"; server = "tcp!fs"; - mtpt = "/tmp"; + mtpt = "/mnt/cfs"; ARGBEGIN{ case 'a': |