summaryrefslogtreecommitdiff
path: root/pkt-line.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2020-05-25 19:58:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-05-27 17:07:06 (GMT)
commit9a9f0d3fc0888599723812be62fa2d7b3cc4d2d6 (patch)
treefbe25d80f7d8834a26e0a453214620901308398b /pkt-line.c
parent1349ffed6dfa8ddcf9f48ede3b9cfd16fdde16fc (diff)
downloadgit-9a9f0d3fc0888599723812be62fa2d7b3cc4d2d6.zip
git-9a9f0d3fc0888599723812be62fa2d7b3cc4d2d6.tar.gz
git-9a9f0d3fc0888599723812be62fa2d7b3cc4d2d6.tar.bz2
pkt-line: add a member for hash algorithm
Add a member for the hash algorithm currently in use to the packet reader so it can parse references correctly. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pkt-line.c')
-rw-r--r--pkt-line.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkt-line.c b/pkt-line.c
index a0e87b1..a4aea07 100644
--- a/pkt-line.c
+++ b/pkt-line.c
@@ -479,6 +479,7 @@ void packet_reader_init(struct packet_reader *reader, int fd,
reader->buffer_size = sizeof(packet_buffer);
reader->options = options;
reader->me = "git";
+ reader->hash_algo = &hash_algos[GIT_HASH_SHA1];
}
enum packet_read_status packet_reader_read(struct packet_reader *reader)