diff options
author | Ryo Nakamura <upa@haeena.net> | 2024-02-08 21:53:42 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2024-02-11 14:08:56 +0900 |
commit | c5afb99d67204f248db359d4130ea8eb3e4bede3 (patch) | |
tree | 5e66ffe49e114a89ea89d575cafbfddab87be995 /include | |
parent | 45ba6b077ede13170855a9a985d06c067fd52a24 (diff) |
fix wrong description for mscp_add_src_path and mscp_set_dst_path
Diffstat (limited to 'include')
-rw-r--r-- | include/mscp.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/mscp.h b/include/mscp.h index 83d4920..bfcd762 100644 --- a/include/mscp.h +++ b/include/mscp.h @@ -128,9 +128,7 @@ int mscp_connect(struct mscp *m); /** * @brief Add a source file path to be copied. The path indicates - * either a file or directory. The path can be `user@host:path` - * notation. In this case, `dst_path` for mscp_set_dst_path() must - * not contain remote host notation. + * either a file or directory. * * @param m mscp instance. * @param src_path source file path to be copied. @@ -141,9 +139,7 @@ int mscp_add_src_path(struct mscp *m, const char *src_path); /** * @brief Set the destination file path. The path indicates either a - * file, directory, or nonexistent path. The path can be - * `user@host:path` notation. In this case, all source paths appended - * by mscp_set_src_path() must not contain remote host notation. + * file, directory, or nonexistent path. * * @param m mscp instance. * @param dst_path destination path to which source files copied. |