summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-03-02 23:07:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-03-02 23:07:20 (GMT)
commitff41848e999fe89600ac0b669b59ad580401f451 (patch)
treebace34c637fb3dec1580d5e01820b4d9ef070e60 /compat
parent4cbf1a0e220d12604afeec208ed18af0766077ac (diff)
parent2ce6d075fa35e4ea4a581c809eca3ad5631c9079 (diff)
downloadgit-ff41848e999fe89600ac0b669b59ad580401f451.zip
git-ff41848e999fe89600ac0b669b59ad580401f451.tar.gz
git-ff41848e999fe89600ac0b669b59ad580401f451.tar.bz2
Merge branch 'rs/micro-cleanups'
Code cleanup. * rs/micro-cleanups: use strpbrk(3) to search for characters from a given set quote: use isalnum() to check for alphanumeric characters
Diffstat (limited to 'compat')
-rw-r--r--compat/mingw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/mingw.c b/compat/mingw.c
index b523014..d14065d 100644
--- a/compat/mingw.c
+++ b/compat/mingw.c
@@ -1245,7 +1245,7 @@ static char *path_lookup(const char *cmd, int exe_only)
int len = strlen(cmd);
int isexe = len >= 4 && !strcasecmp(cmd+len-4, ".exe");
- if (strchr(cmd, '/') || strchr(cmd, '\\'))
+ if (strpbrk(cmd, "/\\"))
return xstrdup(cmd);
path = mingw_getenv("PATH");