aboutsummaryrefslogtreecommitdiff
path: root/builtin/fetch.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2017-05-22 16:17:38 +0200
committerJunio C Hamano <gitster@pobox.com>2017-05-23 14:29:53 +0900
commit64da41993a2c33e9187858808d5a6c87e6d6d101 (patch)
tree3fff7e3011f5b90cc60dea2651894beeeeae00a8 /builtin/fetch.c
parent43a2dfde76a4a47ffa31be11fd5cd7fe0b57bb84 (diff)
downloadgit-64da41993a2c33e9187858808d5a6c87e6d6d101.tar.gz
git-64da41993a2c33e9187858808d5a6c87e6d6d101.tar.xz
ref_store: take a `msg` parameter when deleting references
Just because the files backend can't retain reflogs for deleted references is no reason that they shouldn't be supported by the virtual method interface. Also, `delete_ref()` and `refs_delete_ref()` have already gained `msg` parameters. Now let's add them to `delete_refs()` and `refs_delete_refs()`. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/fetch.c')
-rw-r--r--builtin/fetch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c
index d4d573b98..47708451b 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -941,7 +941,7 @@ static int prune_refs(struct refspec *refs, int ref_count, struct ref *ref_map,
for (ref = stale_refs; ref; ref = ref->next)
string_list_append(&refnames, ref->name);
- result = delete_refs(&refnames, 0);
+ result = delete_refs("fetch: prune", &refnames, 0);
string_list_clear(&refnames, 0);
}