| Date: Tue, 9 Oct 2007 19:22:43 -0400
mount: explicit u on test -S and mount to get unix versions (Chris King)
Diffstat:
M bin/mount | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- |
| t@@ -7,9 +7,9 @@ if(! ~ $#* 2){
switch(`{uname}){
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
+ if(u test -S $1)
+ exec u mount -t 9p -o proto'='unix,name'='$USER $1 $2
+ exec u mount -t 9p -o proto'='tcp,name'='$USER $1 $2
}
if(lsmod|9 grep -si '^fuse ')
exec 9pfuse $1 $2 |