From 93c326ef08cacc730470a7af75041d943825260b Mon Sep 17 00:00:00 2001 From: Marc Dionne Date: Wed, 2 Apr 2008 19:19:57 +0000 Subject: [PATCH] linux-flush-compare-20080402 LICENSE IPL10 because i let this slip out like this. sigh. --- src/afs/LINUX/osi_vnodeops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afs/LINUX/osi_vnodeops.c b/src/afs/LINUX/osi_vnodeops.c index 4a50475a41..3c7a818dfb 100644 --- a/src/afs/LINUX/osi_vnodeops.c +++ b/src/afs/LINUX/osi_vnodeops.c @@ -588,7 +588,7 @@ afs_linux_flush(struct file *fp) AFS_GLOCK(); - if (fp->f_flags | O_RDONLY) { /* readers dont flush */ + if ((fp->f_flags & O_ACCMODE) == O_RDONLY) { /* readers dont flush */ AFS_GUNLOCK(); return 0; }