diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2018-03-12 03:27:36 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-14 17:23:48 +0100 |
commit | e5ec981a4b1d5a3159945f75f600bcf3764e1874 (patch) | |
tree | 35e4ffb67fff93ac61307bec9ceec7b0414fce4b /archive-tar.c | |
parent | archive: convert write_archive_entry_fn_t to object_id (diff) | |
download | git-e5ec981a4b1d5a3159945f75f600bcf3764e1874.tar.xz git-e5ec981a4b1d5a3159945f75f600bcf3764e1874.zip |
archive: convert sha1_file_to_archive to struct object_id
Convert this function to take a pointer to struct object_id and rename
it object_file_to_archive.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive-tar.c')
-rw-r--r-- | archive-tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archive-tar.c b/archive-tar.c index 24b1ccef3a..fd622eacc0 100644 --- a/archive-tar.c +++ b/archive-tar.c @@ -281,7 +281,7 @@ static int write_tar_entry(struct archiver_args *args, buffer = NULL; else if (S_ISLNK(mode) || S_ISREG(mode)) { enum object_type type; - buffer = sha1_file_to_archive(args, path, oid->hash, old_mode, &type, &size); + buffer = object_file_to_archive(args, path, oid, old_mode, &type, &size); if (!buffer) return error("cannot read %s", oid_to_hex(oid)); } else { |