diff --git a/cube/swiss/source/devices/ftp/ftp_devoptab.c b/cube/swiss/source/devices/ftp/ftp_devoptab.c index a6f3edd9..39d0ca6f 100644 --- a/cube/swiss/source/devices/ftp/ftp_devoptab.c +++ b/cube/swiss/source/devices/ftp/ftp_devoptab.c @@ -2447,15 +2447,10 @@ static int dentry_to_stat(FTPDIRENTRY *dentry, struct stat *st) st->st_gid = 2; // Faked st->st_size = dentry->size; st->st_atime = 0; - st->st_spare1 = 0; st->st_mtime = 0; - st->st_spare2 = 0; st->st_ctime = 0; - st->st_spare3 = 0; st->st_blksize = 1024; st->st_blocks = (st->st_size + st->st_blksize - 1) / st->st_blksize; // File size in blocks - st->st_spare4[0] = 0; - st->st_spare4[1] = 0; return 0; }