summaryrefslogtreecommitdiff
path: root/archive.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-09-10 06:48:03 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-09-10 06:57:46 (GMT)
commit37f944363d5b5fb5bcbf2d184865534739713c01 (patch)
treeb3f97e06445c0220b0149795035734fa40d25bfa /archive.h
parent854c4168e77a692dc198311f04bf31939355f2a3 (diff)
downloadgit-37f944363d5b5fb5bcbf2d184865534739713c01.zip
git-37f944363d5b5fb5bcbf2d184865534739713c01.tar.gz
git-37f944363d5b5fb5bcbf2d184865534739713c01.tar.bz2
archive: allow remote to have more formats than we understand.
This fixes git-archive --remote not to parse archiver arguments; otherwise if the remote end implements formats other than the one known locally we will not be able to access that format. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'archive.h')
-rw-r--r--archive.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/archive.h b/archive.h
index d8cca73..e0782b9 100644
--- a/archive.h
+++ b/archive.h
@@ -19,7 +19,6 @@ typedef void *(*parse_extra_args_fn_t)(int argc, const char **argv);
struct archiver {
const char *name;
- const char *remote;
struct archiver_args args;
write_archive_fn_t write_archive;
parse_extra_args_fn_t parse_extra;