Merge branch 'jc/maint-sane-execvp-notdir' into maint-1.7.11
authorJunio C Hamano <gitster@pobox.com>
Tue, 11 Sep 2012 18:09:19 +0000 (11:09 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 11 Sep 2012 18:09:19 +0000 (11:09 -0700)
* jc/maint-sane-execvp-notdir:
sane_execvp(): ignore non-directory on $PATH

run-command.c
index 606791dc674a1d24459d85504f0c981634b52020..f9922b9ecc8e4956e19d7143bb6cb6ef4d97abf8 100644 (file)
@@ -139,6 +139,8 @@ int sane_execvp(const char *file, char * const argv[])
         */
        if (errno == EACCES && !strchr(file, '/'))
                errno = exists_in_PATH(file) ? EACCES : ENOENT;
+       else if (errno == ENOTDIR && !strchr(file, '/'))
+               errno = ENOENT;
        return -1;
 }