diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-05-05 17:38:52 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-05-07 16:20:40 -0700 |
commit | 45c5d4a56bc3ef3b5088a07bdab12cef8163e61d (patch) | |
tree | c4cce9a03006a0c68c8b832c699c1cb2e30cce91 /fast-import.c | |
parent | 47bd9bf82daeac71b28a5a697ecc44e70b205e18 (diff) | |
download | git-45c5d4a56bc3ef3b5088a07bdab12cef8163e61d.tar.gz |
fast-{import,export}: use get_sha1_hex() to read from marks file
It's wrong to call get_sha1() if they should be SHA-1s, plus
inefficient.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fast-import.c')
-rw-r--r-- | fast-import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fast-import.c b/fast-import.c index 5f539d7d8f..3f3214935f 100644 --- a/fast-import.c +++ b/fast-import.c @@ -1822,7 +1822,7 @@ static void read_marks(void) *end = 0; mark = strtoumax(line + 1, &end, 10); if (!mark || end == line + 1 - || *end != ' ' || get_sha1(end + 1, sha1)) + || *end != ' ' || get_sha1_hex(end + 1, sha1)) die("corrupt mark line: %s", line); e = find_object(sha1); if (!e) { |