mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
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>
This commit is contained in:
committed by
Junio C Hamano
parent
015ff4f822
commit
e5ec981a4b
@@ -344,8 +344,8 @@ static int write_zip_entry(struct archiver_args *args,
|
||||
flags |= ZIP_STREAM;
|
||||
out = buffer = NULL;
|
||||
} else {
|
||||
buffer = sha1_file_to_archive(args, path, oid->hash, mode,
|
||||
&type, &size);
|
||||
buffer = object_file_to_archive(args, path, oid, mode,
|
||||
&type, &size);
|
||||
if (!buffer)
|
||||
return error("cannot read %s",
|
||||
oid_to_hex(oid));
|
||||
|
||||
Reference in New Issue
Block a user