]> git.saurik.com Git - apple/libc.git/blobdiff - gen/FreeBSD/exec.c.patch
Libc-498.tar.gz
[apple/libc.git] / gen / FreeBSD / exec.c.patch
index 60d70c1dd5f9e64192ca260c255fc0dc5a7a8a65..84a2aae6fb3232f92d7e96e4b6961c30d2cf4322 100644 (file)
@@ -1,5 +1,5 @@
---- exec.c.orig        Fri Jan  3 15:16:55 2003
-+++ exec.c     Sat May  3 14:03:35 2003
+--- exec.c.orig        2004-11-24 00:12:00.000000000 -0800
++++ exec.c     2004-11-24 15:46:54.000000000 -0800
 @@ -51,7 +51,8 @@
  #include <stdarg.h>
  #include "un-namespace.h"
  
  int
  execl(const char *name, const char *arg, ...)
+@@ -268,8 +269,9 @@
+       }
+       if (eacces)
+               errno = EACCES;
+-      else
++      else if (cur)
+               errno = ENOENT;
++      /* else use existing errno from _execve */
+ done:
+       return (-1);
+ }