summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-09-02 06:34:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-09-03 18:33:00 (GMT)
commitcf99a761d3903dbaf8265f60da9eaee6a15a6fe6 (patch)
tree06a952b6a6d045303a24d9493066a1db3c094d82 /cache.h
parente230c568c4b9a991e3175e5f65171a566fd8e39c (diff)
downloadgit-cf99a761d3903dbaf8265f60da9eaee6a15a6fe6.zip
git-cf99a761d3903dbaf8265f60da9eaee6a15a6fe6.tar.gz
git-cf99a761d3903dbaf8265f60da9eaee6a15a6fe6.tar.bz2
sha1-name: pass len argument to interpret_branch_name()
This is useful to make sure we don't step outside the boundaries of what we are interpreting at the moment. For example while interpreting foobar@{u}~1, the job of interpret_branch_name() ends right before ~1, but there's no way to figure that out inside the function, unless the len argument is passed. So let's do that. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 85b544f..9fbc5fa 100644
--- a/cache.h
+++ b/cache.h
@@ -893,7 +893,7 @@ extern char *resolve_refdup(const char *ref, unsigned char *sha1, int reading, i
extern int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref);
extern int dwim_log(const char *str, int len, unsigned char *sha1, char **ref);
-extern int interpret_branch_name(const char *str, struct strbuf *);
+extern int interpret_branch_name(const char *str, int len, struct strbuf *);
extern int get_sha1_mb(const char *str, unsigned char *sha1);
extern int refname_match(const char *abbrev_name, const char *full_name, const char **rules);