From b0373c47e2e96cb78c68655ce4c20dc5dd4adfff Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Fri, 24 Jun 2016 12:04:57 -0700 Subject: [PATCH] Populate InitResponse.MaxWrite with the right constant --- fuse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuse.go b/fuse.go index bdaec3a4..a421cc67 100644 --- a/fuse.go +++ b/fuse.go @@ -235,7 +235,7 @@ func initMount(c *Conn, conf *mountConfig) error { s := &InitResponse{ Library: proto, MaxReadahead: conf.maxReadahead, - MaxWrite: 128 * 1024, + MaxWrite: maxWrite, Flags: InitBigWrites | conf.initFlags, } r.Respond(s)