diff options
author | Martin Ågren <martin.agren@gmail.com> | 2020-12-31 12:56:22 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-01-04 13:01:55 -0800 |
commit | 7a7d992d0dbd78cf1fc477cf1e1caf61833b3e41 (patch) | |
tree | 06e405ba8f107416381f7c9cb8b2f24b38689f62 /rerere.c | |
parent | e5afd4449d7f1adfd02eca573c23e7ae9c96b28d (diff) | |
download | git-7a7d992d0dbd78cf1fc477cf1e1caf61833b3e41.tar.gz |
sha1-lookup: rename `sha1_pos()` as `hash_pos()`
Rename this function to reflect that we're not just able to handle SHA-1
these days. There are a few instances of "sha1" left in sha1-lookup.[ch]
after this, but those will be addressed in the next commit.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Reviewed-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'rerere.c')
-rw-r--r-- | rerere.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ static struct rerere_dir *find_rerere_dir(const char *hex) if (get_sha1_hex(hex, hash)) return NULL; /* BUG */ - pos = sha1_pos(hash, rerere_dir, rerere_dir_nr, rerere_dir_hash); + pos = hash_pos(hash, rerere_dir, rerere_dir_nr, rerere_dir_hash); if (pos < 0) { rr_dir = xmalloc(sizeof(*rr_dir)); hashcpy(rr_dir->hash, hash); |