Commit e9a77cf2 authored by Aaron Jacobs's avatar Aaron Jacobs

Added Convert support.

parent f71fe97d
......@@ -114,6 +114,15 @@ func Convert(
io = to
co = &to.commonOp
case *bazilfuse.SymlinkRequest:
to := &CreateSymlinkOp{
Parent: InodeID(typed.Header.Node),
Name: typed.NewName,
Target: typed.Target,
}
io = to
co = &to.commonOp
case *bazilfuse.RemoveRequest:
if typed.Dir {
to := &RmDirOp{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment