diff options
author | Jeff King <peff@peff.net> | 2022-10-08 13:05:43 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-10-09 07:09:03 +0200 |
commit | f7669676d0e9aedd814645ca82a5b86980fb7740 (patch) | |
tree | a584eef804eb425750a451a9c2acacd25b3a9cc6 | |
parent | Merge a handful of topics from the 'master' front (diff) | |
download | git-f7669676d0e9aedd814645ca82a5b86980fb7740.tar.xz git-f7669676d0e9aedd814645ca82a5b86980fb7740.zip |
dir: use fspathncmp() in pl_hashmap_cmp()
Call fspathncmp() instead of open-coding it. This shortens the code and
makes it less repetitive.
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | dir.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -669,9 +669,7 @@ int pl_hashmap_cmp(const void *unused_cmp_data, ? ee1->patternlen : ee2->patternlen; - if (ignore_case) - return strncasecmp(ee1->pattern, ee2->pattern, min_len); - return strncmp(ee1->pattern, ee2->pattern, min_len); + return fspathncmp(ee1->pattern, ee2->pattern, min_len); } static char *dup_and_filter_pattern(const char *pattern) |