From: Miklos Szeredi Date: Sat, 19 Aug 2006 09:26:16 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: fuse_2_6_0_rc1~8 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d2bda146d1987b70748ae296caa0946b30b793f9;p=qemu-gpiodev%2Flibfuse.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index a549ab2..81e0b7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,7 +6,7 @@ * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from the kernel tree) the statfs method will receive the path within - the filesystem on which the stat(v)fs syscall was called. + the filesystem on which the stat(v)fs syscall was called * fusermount: try to modprobe fuse module if invoked by root and unable to open device. This is needed with udev, since the device diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 04a34f3..677ef79 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -736,8 +736,7 @@ static void do_setxattr(fuse_req_t req, fuse_ino_t nodeid, const void *inarg) char *value = name + strlen(name) + 1; if (req->f->op.setxattr) - req->f->op.setxattr(req, nodeid, name, value, arg->size, - arg->flags); + req->f->op.setxattr(req, nodeid, name, value, arg->size, arg->flags); else fuse_reply_err(req, ENOSYS); }