summaryrefslogtreecommitdiff
path: root/archive.h
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2018-03-12 02:27:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-03-14 16:23:48 (GMT)
commite5ec981a4b1d5a3159945f75f600bcf3764e1874 (patch)
tree35e4ffb67fff93ac61307bec9ceec7b0414fce4b /archive.h
parent015ff4f8225841d791c9940d71ebbce82c978a3c (diff)
downloadgit-e5ec981a4b1d5a3159945f75f600bcf3764e1874.zip
git-e5ec981a4b1d5a3159945f75f600bcf3764e1874.tar.gz
git-e5ec981a4b1d5a3159945f75f600bcf3764e1874.tar.bz2
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.h')
-rw-r--r--archive.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/archive.h b/archive.h
index 741991b..1f9954f 100644
--- a/archive.h
+++ b/archive.h
@@ -39,9 +39,9 @@ extern int write_archive_entries(struct archiver_args *args, write_archive_entry
extern int write_archive(int argc, const char **argv, const char *prefix, const char *name_hint, int remote);
const char *archive_format_from_filename(const char *filename);
-extern void *sha1_file_to_archive(const struct archiver_args *args,
- const char *path, const unsigned char *sha1,
- unsigned int mode, enum object_type *type,
- unsigned long *sizep);
+extern void *object_file_to_archive(const struct archiver_args *args,
+ const char *path, const struct object_id *oid,
+ unsigned int mode, enum object_type *type,
+ unsigned long *sizep);
#endif /* ARCHIVE_H */