mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
Add the file size to the file info struct.
This commit is contained in:
parent
cfd587a260
commit
84bb336e8e
2 changed files with 2 additions and 0 deletions
|
@ -134,6 +134,7 @@ typedef struct csync_file_stat_s {
|
|||
uid_t uid;
|
||||
gid_t gid;
|
||||
mode_t mode;
|
||||
off_t size;
|
||||
int nlink;
|
||||
time_t modtime;
|
||||
int type;
|
||||
|
|
|
@ -126,6 +126,7 @@ out:
|
|||
SAFE_FREE(tmp);
|
||||
st->inode = fs->inode;
|
||||
st->mode = fs->mode;
|
||||
st->size = fs->size;
|
||||
st->modtime = fs->mtime;
|
||||
st->uid = fs->uid;
|
||||
st->gid = fs->gid;
|
||||
|
|
Loading…
Reference in a new issue