diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-06-22 16:11:14 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-06-22 16:11:14 -0400 |
commit | 460237e94dfead390a7b8372af5c0ebf8c1f226b (patch) | |
tree | 997d6ffacc648267ba01a85459df83897ed0debc /include/mirrors.h | |
parent | 62db2a4054a55883e7476750c925cb9d5a72fbc5 (diff) | |
download | spmc-460237e94dfead390a7b8372af5c0ebf8c1f226b.tar.gz |
Move SPM_GLOBAL.repo_target string usage out of mirror_clone
* Assign targets from inside spm.c instead of external manifest/mirror functions
Diffstat (limited to 'include/mirrors.h')
-rw-r--r-- | include/mirrors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mirrors.h b/include/mirrors.h index dd4b256..f57da83 100644 --- a/include/mirrors.h +++ b/include/mirrors.h @@ -9,6 +9,6 @@ char **mirror_list(const char *filename); void mirror_list_free(char **m); -void mirror_clone(Manifest *info, char *dest); +int mirror_clone(Manifest *info, char *_dest); #endif //SPM_MIRRORS_H |