aboutsummaryrefslogtreecommitdiffstats
path: root/archive.c
diff options
context:
space:
mode:
authorRene Scharfe <rene.scharfe@lsrfire.ath.cx>2008-07-25 12:41:24 +0200
committerJunio C Hamano <gitster@pobox.com>2008-07-25 17:21:04 -0700
commitf15f736d38d10f5c4f2ca367565019bdfe8e71dd (patch)
tree7e4797c0168bbed1f291a0e1ff6daee143d02593 /archive.c
parent7f4d0511af9d6c93656dda5a683632f5ae5b5278 (diff)
downloadgit-f15f736d38d10f5c4f2ca367565019bdfe8e71dd.tar.gz
archive: declare struct archiver where it's needed
Move the declaration of struct archiver to archive.c, as this is the only file left where it is used. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive.c')
-rw-r--r--archive.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/archive.c b/archive.c
index c4662a2830..f834b5f51f 100644
--- a/archive.c
+++ b/archive.c
@@ -9,7 +9,11 @@ static const char archive_usage[] = \
#define USES_ZLIB_COMPRESSION 1
-const struct archiver archivers[] = {
+const struct archiver {
+ const char *name;
+ write_archive_fn_t write_archive;
+ unsigned int flags;
+} archivers[] = {
{ "tar", write_tar_archive },
{ "zip", write_zip_archive, USES_ZLIB_COMPRESSION },
};