Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/gen PR/13242: John Heasley: ENOTDIR is not fatal



details:   https://anonhg.NetBSD.org/src/rev/ded38f82dec1
branches:  trunk
changeset: 544230:ded38f82dec1
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Mar 15 04:41:17 2003 +0000

description:
PR/13242: John Heasley: ENOTDIR is not fatal

diffstat:

 lib/libc/gen/execvp.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r a8c4c021eebd -r ded38f82dec1 lib/libc/gen/execvp.c
--- a/lib/libc/gen/execvp.c     Sat Mar 15 02:54:24 2003 +0000
+++ b/lib/libc/gen/execvp.c     Sat Mar 15 04:41:17 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: execvp.c,v 1.22 2003/03/04 19:44:10 nathanw Exp $      */
+/*     $NetBSD: execvp.c,v 1.23 2003/03/15 04:41:17 christos Exp $     */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)exec.c     8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: execvp.c,v 1.22 2003/03/04 19:44:10 nathanw Exp $");
+__RCSID("$NetBSD: execvp.c,v 1.23 2003/03/15 04:41:17 christos Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -125,6 +125,7 @@
                case EACCES:
                        eacces = 1;
                        break;
+               case ENOTDIR:
                case ENOENT:
                        break;
                case ENOEXEC:



Home | Main Index | Thread Index | Old Index