git: 9front

Download patch

ref: ee67c05dbd80fe07056e6b654d3559411df0e0ad
parent: d3cbaa85892eefdd928745c83145d1bba4afcc8a
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Thu Dec 11 15:38:04 EST 2014

cfs: change default mountpoint to /mnt/cfs and fix the manual (thanks mischief)

--- a/sys/man/4/cfs
+++ b/sys/man/4/cfs
@@ -43,7 +43,7 @@
 mounts onto
 .I mtpt
 (default
-.BR / )
+.BR /mnt/cfs )
 after connecting to the file server.
 .PP
 The options are:
--- a/sys/src/cmd/cfs/cfs.c
+++ b/sys/src/cmd/cfs/cfs.c
@@ -136,7 +136,7 @@
 	chkid = 1;
 	part = "/dev/sdC0/cache";
 	server = "tcp!fs";
-	mtpt = "/tmp";
+	mtpt = "/mnt/cfs";
 
 	ARGBEGIN{
 	case 'a':
--