This was probably changed by accident in r22886. It caused all read/write

pages calls of the fat filesystem to return an error instead of the effective
result. Please shout if this was done on purpose. I tested a bit with a fat
volume and where it failed previously when opening files it now works as
expected.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24711 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2008-03-31 19:47:00 +00:00
parent c80e610789
commit 550f245a9d

View File

@ -1527,7 +1527,7 @@ dosfs_read_pages(fs_volume _fs, fs_vnode _node, fs_cookie _cookie, off_t pos,
UNLOCK_VOL(vol);
}
return B_ERROR;
return status;
}
@ -1579,7 +1579,7 @@ dosfs_write_pages(fs_volume _fs, fs_vnode _node, fs_cookie _cookie, off_t pos,
UNLOCK_VOL(vol);
}
return B_ERROR;
return status;
}