diff options
Diffstat (limited to 'src/file.h')
-rw-r--r-- | src/file.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ #include <atomic.h> struct file { - struct list_head list; /* sscp->file_list */ + struct list_head list; /* mscp->file_list */ char src_path[PATH_MAX]; /* copy source path */ bool src_is_remote; /* source is remote */ @@ -53,7 +53,7 @@ struct file { */ struct chunk { - struct list_head list; /* sscp->chunk_list */ + struct list_head list; /* mscp->chunk_list */ struct file *f; size_t off; /* offset of this chunk on the file f */ size_t len; /* length of this chunk */ |