36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
diff -up fuse-2.7.0/lib/fuse.c.patch1 fuse-2.7.0/lib/fuse.c
|
|
--- fuse-2.7.0/lib/fuse.c.patch1 2007-07-02 07:33:08.000000000 -0400
|
|
+++ fuse-2.7.0/lib/fuse.c 2007-08-29 17:16:54.000000000 -0400
|
|
@@ -628,16 +628,15 @@ static int fuse_compat_open(struct fuse_
|
|
{
|
|
int err;
|
|
if (!fs->compat || fs->compat >= 25)
|
|
- err = fs->op.open(path, fi);
|
|
+ err = (fs->op.open)(path, fi);
|
|
else if (fs->compat == 22) {
|
|
struct fuse_file_info_compat tmp;
|
|
memcpy(&tmp, fi, sizeof(tmp));
|
|
- err = ((struct fuse_operations_compat22 *) &fs->op)->open(path, &tmp);
|
|
+ err = (((struct fuse_operations_compat22 *) &fs->op)->open)(path, &tmp);
|
|
memcpy(fi, &tmp, sizeof(tmp));
|
|
fi->fh = tmp.fh;
|
|
} else
|
|
- err = ((struct fuse_operations_compat2 *) &fs->op)
|
|
- ->open(path, fi->flags);
|
|
+ err = (((struct fuse_operations_compat2 *) &fs->op)->open)(path, fi->flags);
|
|
return err;
|
|
}
|
|
|
|
diff -up fuse-2.7.0/lib/fuse_lowlevel.c.patch1 fuse-2.7.0/lib/fuse_lowlevel.c
|
|
--- fuse-2.7.0/lib/fuse_lowlevel.c.patch1 2007-08-29 17:17:13.000000000 -0400
|
|
+++ fuse-2.7.0/lib/fuse_lowlevel.c 2007-08-29 17:17:26.000000000 -0400
|
|
@@ -601,7 +601,7 @@ static void do_open(fuse_req_t req, fuse
|
|
fi.flags = arg->flags;
|
|
|
|
if (req->f->op.open)
|
|
- req->f->op.open(req, nodeid, &fi);
|
|
+ (req->f->op.open)(req, nodeid, &fi);
|
|
else
|
|
fuse_reply_open(req, &fi);
|
|
}
|