* fhandler_netdrive.cc (fhandler_netdrive::telldir): Remove since it's

equivalent to fhandler_virtual::telldir now anyway.
	* fhandler.h (class fhandler_netdrive): Remove telldir.
This commit is contained in:
Corinna Vinschen 2005-05-18 10:32:37 +00:00
parent bffaf54d76
commit 49cc728adc
3 changed files with 6 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2005-05-18 Corinna Vinschen <corinna@vinschen.de>
* fhandler_netdrive.cc (fhandler_netdrive::telldir): Remove since it's
equivalent to fhandler_virtual::telldir now anyway.
* fhandler.h (class fhandler_netdrive): Remove telldir.
2005-05-18 Corinna Vinschen <corinna@vinschen.de>
* fhandler_netdrive.cc (fhandler_netdrive::telldir): Implement.

View File

@ -1220,7 +1220,6 @@ class fhandler_netdrive: public fhandler_virtual
fhandler_netdrive ();
int exists();
struct dirent *readdir (DIR *);
_off64_t telldir (DIR *);
void seekdir (DIR *, _off64_t);
void rewinddir (DIR *);
int closedir (DIR *);

View File

@ -209,12 +209,6 @@ fhandler_netdrive::readdir (DIR *dir)
return dir->__d_dirent;
}
_off64_t
fhandler_netdrive::telldir (DIR *dir)
{
return dir->__d_position;
}
void
fhandler_netdrive::seekdir (DIR *dir, _off64_t pos)
{