diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/execvp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/execvp.c b/posix/execvp.c index 2eda603c39..5b1e14bf1a 100644 --- a/posix/execvp.c +++ b/posix/execvp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 95, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -121,6 +121,7 @@ execvp (file, argv) got_eacces = 1; case ENOENT: case ESTALE: + case ENOTDIR: /* Those errors indicate the file is missing or not executable by us, in which case we want to just try the next path directory. */ |