Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'jc/maint-sane-execvp-notdir' into maint-1.7.11
author
Junio C Hamano
<gitster@pobox.com>
Tue, 11 Sep 2012 18:09:19 +0000
(11:09 -0700)
committer
Junio 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
patch
|
blob
|
history
raw
(from parent 1:
4c3fda0
)
diff --git
a/run-command.c
b/run-command.c
index 606791dc674a1d24459d85504f0c981634b52020..f9922b9ecc8e4956e19d7143bb6cb6ef4d97abf8 100644
(file)
--- a/
run-command.c
+++ b/
run-command.c
@@
-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;
}