summaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorJohan Herland <johan@herland.net>2012-10-21 10:40:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-10-21 19:08:42 (GMT)
commitb274a7146c44624bc30bbd54124312d4d3e6a28d (patch)
tree379f1bd1c443d760bd723647f5b9b6da9ed3f08d /refs.c
parent75c96e05cec5654912122cb2435e8c3f928a441d (diff)
downloadgit-b274a7146c44624bc30bbd54124312d4d3e6a28d.zip
git-b274a7146c44624bc30bbd54124312d4d3e6a28d.tar.gz
git-b274a7146c44624bc30bbd54124312d4d3e6a28d.tar.bz2
Fix failure to delete a packed ref through a symref
When deleting a ref through a symref (e.g. using 'git update-ref -d HEAD' to delete refs/heads/master), we would remove the loose ref, but a packed version of the same ref would remain, the end result being that instead of deleting refs/heads/master we would appear to reset it to its state as of the last repack. This patch fixes the issue, by making sure we pass the correct ref name when invoking repack_without_ref() from within delete_ref(). Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/refs.c b/refs.c
index da74a2b..b4c57af 100644
--- a/refs.c
+++ b/refs.c
@@ -1778,7 +1778,7 @@ int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
* packed one. Also, if it was not loose we need to repack
* without it.
*/
- ret |= repack_without_ref(refname);
+ ret |= repack_without_ref(lock->ref_name);
unlink_or_warn(git_path("logs/%s", lock->ref_name));
invalidate_ref_cache(NULL);