diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.c | 2 | ||||
-rw-r--r-- | src/tar.c | 2 | ||||
-rw-r--r-- | src/tar.h | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -2026,7 +2026,7 @@ static int repo_tarballs_refs_each( goto cleanup; } - if (tarzify(out)) { + if (write_tarball_from_directory(out)) { ret = -1; goto cleanup; } @@ -1,7 +1,7 @@ #include "config.h" #include "tar.h" -int tarzify(const char *const directory_path) { +int write_tarball_from_directory(const char *const directory_path) { (void)directory_path; return 0; } @@ -1,7 +1,7 @@ #ifndef GISTATIC_TAR_H #define GISTATIC_TAR_H -int tarzify(const char *const directory_path); +int write_tarball_from_directory(const char *const directory_path); #ifdef TEST void unit_tests_tar(void); |