use 9p not 9P as mount type (Michael Kaminsky)
diff --git a/bin/mount b/bin/mount
index 3cc36ad..90136b1 100755
--- a/bin/mount
+++ b/bin/mount
@@ -8,8 +8,8 @@
 case Linux
 	if(lsmod|9 grep -si '^9p(2000)? '){
 		if(test -S $1)
-			exec mount -t 9P -o proto'='unix,name'='$USER $1 $2
-		exec mount -t 9P -o proto'='tcp,name'='$USER $1 $2
+			exec mount -t 9p -o proto'='unix,name'='$USER $1 $2
+		exec mount -t 9p -o proto'='tcp,name'='$USER $1 $2
 	}
 	if(lsmod|9 grep -si '^fuse ')
 		exec 9pfuse $1 $2