Commit 816f77d7 authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed a bug.

parent 36b7b6ab
......@@ -157,9 +157,9 @@ func Convert(
co = &to.commonOp
case fusekernel.OpCreate:
in := (*fusekernel.MkdirIn)(m.Consume(fusekernel.CreateInSize(protocol)))
in := (*fusekernel.CreateIn)(m.Consume(fusekernel.CreateInSize(protocol)))
if in == nil {
err = errors.New("Corrupt OpMkdir")
err = errors.New("Corrupt OpCreate")
return
}
......
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