Must have accidently implemented BQuery::Rewind() when migrating to our syscalls.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10681 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2005-01-12 03:35:48 +00:00
parent f5b1fba063
commit 0660acfd9c
+5 -3
View File
@@ -629,14 +629,16 @@ BQuery::GetNextDirents(struct dirent *buf, size_t length, int32 count)
// Rewind // Rewind
/*! \brief Rewinds the entry list back to the first entry. /*! \brief Rewinds the entry list back to the first entry.
Not implemented for BQuery.
\return \return
- \c B_OK on success, - \c B_ERROR
- \c B_FILE_ERROR if Fetch() has not yet been called
*/ */
status_t status_t
BQuery::Rewind() BQuery::Rewind()
{ {
return _kern_rewind_dir(fQueryFd); return B_ERROR;
} }
// CountEntries // CountEntries