convert "hashcmp() != 0" to "!hasheq()"
[gitweb.git] / sha1-file.c
index cc8a1963498c78ec56171f79c4c1c2d426bd12ba..d85f4e93e1feb6843d61517b90acd8135ec526f7 100644 (file)
@@ -2213,7 +2213,7 @@ static int check_stream_sha1(git_zstream *stream,
        }
 
        the_hash_algo->final_fn(real_sha1, &c);
-       if (hashcmp(expected_sha1, real_sha1)) {
+       if (!hasheq(expected_sha1, real_sha1)) {
                error(_("sha1 mismatch for %s (expected %s)"), path,
                      sha1_to_hex(expected_sha1));
                return -1;