not sure if this is correct and i'm just confused?
case styx.Topen:
f, err := os.OpenFile(p, msg.Flag , 0777)
log.Println("Open", p, msg.Flag, err)
msg.Ropen(f, err)
indicates Flag is always 0, so that when i do
./9pfuse localhost ~/mnt
echo bla > ~/mnt/bar
bar is just an empty file. presumably because it would require O_RDWR to actually write anything
not sure if this is correct and i'm just confused?
indicates Flag is always 0, so that when i do
bar is just an empty file. presumably because it would require O_RDWR to actually write anything