diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-10-30 15:20:05 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-10-30 15:20:05 +0900 |
commit | c495f6b89bdd2ff8df8c71cc8ca01c597182e8c8 (patch) | |
tree | 859712525e6bc46b52b0a48174b0a97c52b64ef1 /src/file.h | |
parent | 37c37990f5fcad6ba9232feba9df775692cd5f46 (diff) |
rename sscp to mscp
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 path[PATH_MAX]; /* copy source path */ bool remote; /* source is remote */ @@ -51,7 +51,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 */ |