Commit cb2dc0b0 by Ben Straub

Clone: replace one hardcoded value with another.

parent 14741d62
...@@ -73,8 +73,8 @@ static int reference_matches_remote_head(const char *head_name, void *payload) ...@@ -73,8 +73,8 @@ static int reference_matches_remote_head(const char *head_name, void *payload)
if (!git_reference_name_to_oid(&oid, head_info->repo, head_name) && if (!git_reference_name_to_oid(&oid, head_info->repo, head_name) &&
!git_oid_cmp(&head_info->remote_head_oid, &oid)) { !git_oid_cmp(&head_info->remote_head_oid, &oid)) {
/* strlen("refs/remotes/origin/") == 20 */ git_buf_puts(&head_info->branchname,
git_buf_puts(&head_info->branchname, head_name+20); head_name+strlen("refs/remotes/origin/"));
} }
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment