13a9874
diff -up fuse-2.7.2/lib/fuse.c.BAD fuse-2.7.2/lib/fuse.c
13a9874
--- lib/fuse.c	2008-01-21 09:55:42.000000000 -0500
13a9874
+++ lib/fuse.c	2008-01-21 09:57:20.000000000 -0500
13a9874
@@ -633,17 +633,15 @@ static int fuse_compat_open(struct fuse_
13a9874
 {
13a9874
 	int err;
13a9874
 	if (!fs->compat || fs->compat >= 25)
13a9874
-		err = fs->op.open(path, fi);
13a9874
+		err = (fs->op.open)(path, fi);
13a9874
 	else if (fs->compat == 22) {
13a9874
 		struct fuse_file_info_compat tmp;
13a9874
 		memcpy(&tmp, fi, sizeof(tmp));
13a9874
-		err = ((struct fuse_operations_compat22 *) &fs->op)->open(path,
13a9874
-									  &tmp);
13a9874
+		err = (((struct fuse_operations_compat22 *) &fs->op)->open)(path, &tmp);
13a9874
 		memcpy(fi, &tmp, sizeof(tmp));
13a9874
 		fi->fh = tmp.fh;
13a9874
 	} else
13a9874
-		err = ((struct fuse_operations_compat2 *) &fs->op)
13a9874
-			->open(path, fi->flags);
13a9874
+		err = (((struct fuse_operations_compat2 *) &fs->op)->open)(path, fi->flags);
13a9874
 	return err;
13a9874
 }
13a9874
 
13a9874
diff -up fuse-2.7.2/lib/fuse_lowlevel.c.BAD fuse-2.7.2/lib/fuse_lowlevel.c
13a9874
--- lib/fuse_lowlevel.c	2008-01-21 09:57:52.000000000 -0500
13a9874
+++ lib/fuse_lowlevel.c	2008-01-21 09:58:15.000000000 -0500
13a9874
@@ -605,7 +605,7 @@ static void do_open(fuse_req_t req, fuse
13a9874
 	fi.flags = arg->flags;
13a9874
 
13a9874
 	if (req->f->op.open)
13a9874
-		req->f->op.open(req, nodeid, &fi);
13a9874
+		(req->f->op.open)(req, nodeid, &fi);
13a9874
 	else
13a9874
 		fuse_reply_open(req, &fi);
13a9874
 }