* BFS now correctly reports the B_FS_HAS_QUERY flag (ie. if you disable the

indices it will no longer be set).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34909 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2010-01-05 17:37:33 +00:00
parent 035cb25ef2
commit b2397539da
@@ -204,7 +204,8 @@ bfs_read_fs_stat(fs_volume* _volume, struct fs_info* info)
// File system flags.
info->flags = B_FS_IS_PERSISTENT | B_FS_HAS_ATTR | B_FS_HAS_MIME
| B_FS_HAS_QUERY | (volume->IsReadOnly() ? B_FS_IS_READONLY : 0);
| (volume->IndicesNode() != NULL ? B_FS_HAS_QUERY : 0)
| (volume->IsReadOnly() ? B_FS_IS_READONLY : 0);
info->io_size = BFS_IO_SIZE;
// whatever is appropriate here?