summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2019-11-08 20:25:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-11-10 07:04:36 (GMT)
commit89f8cabaf35f8a5f7e893f190764597ad5c44ef9 (patch)
tree88de4e90685eeac328b61f3bcb1c27bb9010d9a3 /utf8.c
parentda72936f544fec5a335e66432610e4cef4430991 (diff)
downloadgit-89f8cabaf35f8a5f7e893f190764597ad5c44ef9.zip
git-89f8cabaf35f8a5f7e893f190764597ad5c44ef9.tar.gz
git-89f8cabaf35f8a5f7e893f190764597ad5c44ef9.tar.bz2
utf8: use skip_iprefix() in same_utf_encoding()
Get rid of magic numbers by using skip_iprefix() and skip_prefix() for parsing the leading "[uU][tT][fF]-?" of both strings instead of checking with istarts_with() and an explicit comparison. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/utf8.c b/utf8.c
index 5c8f151..5b39361 100644
--- a/utf8.c
+++ b/utf8.c
@@ -411,11 +411,10 @@ out:
*/
static int same_utf_encoding(const char *src, const char *dst)
{
- if (istarts_with(src, "utf") && istarts_with(dst, "utf")) {
- /* src[3] or dst[3] might be '\0' */
- int i = (src[3] == '-' ? 4 : 3);
- int j = (dst[3] == '-' ? 4 : 3);
- return !strcasecmp(src+i, dst+j);
+ if (skip_iprefix(src, "utf", &src) && skip_iprefix(dst, "utf", &dst)) {
+ skip_prefix(src, "-", &src);
+ skip_prefix(dst, "-", &dst);
+ return !strcasecmp(src, dst);
}
return 0;
}