diff options
Diffstat (limited to 'ui-snapshot.c')
| -rw-r--r-- | ui-snapshot.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ui-snapshot.c b/ui-snapshot.c index 9461d51..92cde42 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c | |||
| @@ -79,6 +79,12 @@ static int write_tar_bzip2_archive(const char *hex, const char *prefix) | |||
| 79 | return write_compressed_tar_archive(hex, prefix, argv); | 79 | return write_compressed_tar_archive(hex, prefix, argv); |
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | static int write_tar_lzip_archive(const char *hex, const char *prefix) | ||
| 83 | { | ||
| 84 | char *argv[] = { "lzip", NULL }; | ||
| 85 | return write_compressed_tar_archive(hex, prefix, argv); | ||
| 86 | } | ||
| 87 | |||
| 82 | static int write_tar_xz_archive(const char *hex, const char *prefix) | 88 | static int write_tar_xz_archive(const char *hex, const char *prefix) |
| 83 | { | 89 | { |
| 84 | char *argv[] = { "xz", NULL }; | 90 | char *argv[] = { "xz", NULL }; |
| @@ -90,6 +96,7 @@ const struct cgit_snapshot_format cgit_snapshot_formats[] = { | |||
| 90 | { ".tar", "application/x-tar", write_tar_archive }, | 96 | { ".tar", "application/x-tar", write_tar_archive }, |
| 91 | { ".tar.gz", "application/x-gzip", write_tar_gzip_archive }, | 97 | { ".tar.gz", "application/x-gzip", write_tar_gzip_archive }, |
| 92 | { ".tar.bz2", "application/x-bzip2", write_tar_bzip2_archive }, | 98 | { ".tar.bz2", "application/x-bzip2", write_tar_bzip2_archive }, |
| 99 | { ".tar.lz", "application/x-lzip", write_tar_lzip_archive }, | ||
| 93 | { ".tar.xz", "application/x-xz", write_tar_xz_archive }, | 100 | { ".tar.xz", "application/x-xz", write_tar_xz_archive }, |
| 94 | { ".zip", "application/x-zip", write_zip_archive }, | 101 | { ".zip", "application/x-zip", write_zip_archive }, |
| 95 | { NULL } | 102 | { NULL } |
