diff options
author | Steve French <sfrench@us.ibm.com> | 2008-12-02 18:53:55 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2008-12-26 02:29:10 +0000 |
commit | acc18aa1e643519035abdab5e72dc75e534b5198 (patch) | |
tree | e2c6213f8834c90c6f5405b9606844a993b81117 /fs | |
parent | 13a6e42af8d90e2e8eb7fa50adf862a525b70518 (diff) | |
download | linux-acc18aa1e643519035abdab5e72dc75e534b5198.tar.gz linux-acc18aa1e643519035abdab5e72dc75e534b5198.tar.bz2 linux-acc18aa1e643519035abdab5e72dc75e534b5198.zip |
[CIFS] remove sparse warning
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index babd27a4699a..b1e1fc6a6e6a 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -708,7 +708,7 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) if ((tcon->ses->capabilities & CAP_UNIX) && (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && - (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL == 0)) + ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) posix_locking = 1; /* BB add code here to normalize offset and length to account for negative length which we can not accept over the |