diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2012-07-02 21:31:09 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2012-07-02 21:31:09 -0500 |
commit | 226a60f979d62789a31d4c92a4f104e1a0b2c9dd (patch) | |
tree | ddf8288025bd0050b39bb6e10055fa2a13767798 | |
parent | 0daabb39b366b56a1cf534471217baa51267fbdf (diff) |
Fix op-write response.
-rw-r--r-- | src/clojure/foofs/fuse/protocol.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/clojure/foofs/fuse/protocol.clj b/src/clojure/foofs/fuse/protocol.clj index 8c0f690..abb5bb0 100644 --- a/src/clojure/foofs/fuse/protocol.clj +++ b/src/clojure/foofs/fuse/protocol.clj @@ -332,7 +332,8 @@ [write-out] (domonad state-m - [_ (write-int32 (:size write-out))] + [_ (write-int32 (:size write-out)) + _ (pad 4)] nil)) (defn write-statfs-out |