diff options
author | Jeff King <peff@peff.net> | 2011-06-21 21:24:07 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-06-22 11:12:35 -0700 |
commit | 4d7c98986379b0ab93cbf9092b60dfb5ab1cee7c (patch) | |
tree | bfee1193f7a5bcfb17829faf5c419bfd2a654bb4 /archive-tar.c | |
parent | 13e0f88d4aba326da9217c225d6ab5e642eb611d (diff) | |
download | git-4d7c98986379b0ab93cbf9092b60dfb5ab1cee7c.tar.gz |
archive: pass archiver struct to write_archive callback
The current archivers are very static; when you are in the
write_tar_archive function, you know you are writing a tar.
However, to facilitate runtime-configurable archivers
that will share a common write function we need to tell the
function which archiver was used.
As a convenience, we also provide an opaque data pointer in
the archiver struct so that individual archivers can put
something useful there when they register themselves.
Technically they could just use the "name" field to look in
an internal map of names to data, but this is much simpler.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive-tar.c')
-rw-r--r-- | archive-tar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archive-tar.c b/archive-tar.c index 930375bf21..bed9a9b15c 100644 --- a/archive-tar.c +++ b/archive-tar.c @@ -234,7 +234,8 @@ static int git_tar_config(const char *var, const char *value, void *cb) return 0; } -static int write_tar_archive(struct archiver_args *args) +static int write_tar_archive(const struct archiver *ar, + struct archiver_args *args) { int err = 0; |