diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-22 06:27:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-22 06:27:54 +0000 |
commit | da9f699f3149c91ef1382aeeef125f6866324f56 (patch) | |
tree | 7a5e80f4546c9c7e70e9b4a43e479c6feec4b00e /posix/execvp.c | |
parent | dd28590fd4efa3508ca7c079abb69060836dd374 (diff) | |
download | glibc-da9f699f3149c91ef1382aeeef125f6866324f56.zip glibc-da9f699f3149c91ef1382aeeef125f6866324f56.tar.gz glibc-da9f699f3149c91ef1382aeeef125f6866324f56.tar.bz2 |
Update.
2004-10-21 Ulrich Drepper <drepper@redhat.com>
* posix/execvp.c (execvp): Also ignore ENODEV and ETIMEDOUT errno
values.
Diffstat (limited to 'posix/execvp.c')
-rw-r--r-- | posix/execvp.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/posix/execvp.c b/posix/execvp.c index 6e91952..d6f60c0 100644 --- a/posix/execvp.c +++ b/posix/execvp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,95,96,97,98,99,2002 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,1995-99,2002,2004 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 @@ -135,6 +135,11 @@ execvp (file, argv) /* Those errors indicate the file is missing or not executable by us, in which case we want to just try the next path directory. */ + case ENODEV: + case ETIMEDOUT: + /* Some strange filesystems like AFS return even + stranger error numbers. They cannot reasonably mean + anything else so ignore those, too. */ break; default: |