* ftpfs.c (ftpfs_linear_start): Likewise.

* fish.c (fish_linear_start): Likewise.
This commit is contained in:
Andrew V. Samoilov 2004-10-06 21:20:17 +00:00
parent 126fa4d83d
commit e65b13eb00
3 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
2004-10-05 Andrew V. Samoilov <sav@bcs.zp.ua>
2004-10-06 Andrew V. Samoilov <sav@bcs.zp.ua>
* cpio.c (cpio_find_head): Check mc_read() return value.
(cpio_read_crc_head): Handle mc_read() return value properly.
@ -8,6 +8,8 @@
2004-10-06 Alexander Savelyev <i@fano.com.ua>
* xdirentry.h (linear_start): Use off_t for offset.
* ftpfs.c (ftpfs_linear_start): Likewise.
* fish.c (fish_linear_start): Likewise.
2004-10-05 Miroslav Rudisin <miero+gnu@atrey.karlin.mff.cuni.cz>
@ -19,10 +21,9 @@
to avoid possible segmentation fault. Close
https://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=8974
2004-09-26 Roland Illig <roland.illig@gmx.de>
* vfs.c (_vfs_get_class): Reverted my last patch because
* vfs.c (_vfs_get_class): Revert my last patch because
Leonard reported it to make mc crash.
2004-09-25 Roland Illig <roland.illig@gmx.de>

View File

@ -572,7 +572,8 @@ error_return:
return -1;
}
static int fish_linear_start(struct vfs_class *me, struct vfs_s_fh *fh, int offset)
static int
fish_linear_start (struct vfs_class *me, struct vfs_s_fh *fh, off_t offset)
{
char *name;
char *quoted_name;

View File

@ -1366,7 +1366,7 @@ error_return:
}
static int
ftpfs_linear_start(struct vfs_class *me, struct vfs_s_fh *fh, int offset)
ftpfs_linear_start (struct vfs_class *me, struct vfs_s_fh *fh, off_t offset)
{
char *name = vfs_s_fullpath (me, fh->ino);