Commit ea94b9d9 authored by Evgeny Sinelnikov's avatar Evgeny Sinelnikov

2.6.25: fix using false instead of FALSE at old kernel code

parent b354e531
...@@ -828,7 +828,7 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) ...@@ -828,7 +828,7 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock)
stored_rc = CIFSSMBLock(xid, pTcon, stored_rc = CIFSSMBLock(xid, pTcon,
netfid, netfid,
li->length, li->offset, li->length, li->offset,
1, 0, li->type, false); 1, 0, li->type, FALSE);
if (stored_rc) if (stored_rc)
rc = stored_rc; rc = stored_rc;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment