]> granicus.if.org Git - git/commitdiff
fast-{import,export}: use get_sha1_hex() to read from marks file
authorFelipe Contreras <felipe.contreras@gmail.com>
Sun, 5 May 2013 22:38:52 +0000 (17:38 -0500)
committerJunio C Hamano <gitster@pobox.com>
Tue, 7 May 2013 23:20:40 +0000 (16:20 -0700)
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>
builtin/fast-export.c
fast-import.c

index 18fdfb31af54585a4a8ca7b61de4d590be4628d1..d1d68e9fc62889f647aff0005cc2ca2d3fef9d94 100644 (file)
@@ -623,7 +623,7 @@ static void import_marks(char *input_file)
 
                mark = strtoumax(line + 1, &mark_end, 10);
                if (!mark || mark_end == line + 1
-                       || *mark_end != ' ' || get_sha1(mark_end + 1, sha1))
+                       || *mark_end != ' ' || get_sha1_hex(mark_end + 1, sha1))
                        die("corrupt mark line: %s", line);
 
                if (last_idnum < mark)
index 5f539d7d8f7e087423734fb1d19e0d5e580fbe6e..3f3214935f498c6a53a705a70a782d28ab8b3c12 100644 (file)
@@ -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) {