summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/luatexdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/luatexdir/lua/loslibext.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog
index 2dbb702ea7d..9cab78f7e4a 100644
--- a/Build/source/texk/web2c/luatexdir/ChangeLog
+++ b/Build/source/texk/web2c/luatexdir/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-24 Taco Hoekwater <taco@luatex>
+
+ * lua/loslibext.c: fix os.exec() and os.spawn(), twice
+
2010-04-23 Taco Hoekwater <taco@luatex>
* lua/loslibext.c: fix os.exec() and os.spawn() once more
diff --git a/Build/source/texk/web2c/luatexdir/lua/loslibext.c b/Build/source/texk/web2c/luatexdir/lua/loslibext.c
index 8cbeb086650..d4b3495386d 100644
--- a/Build/source/texk/web2c/luatexdir/lua/loslibext.c
+++ b/Build/source/texk/web2c/luatexdir/lua/loslibext.c
@@ -150,7 +150,7 @@ static int exec_command(const char *file, char *const *argv, char *const *envp)
size_t prefixlen, filelen, totallen;
if (strchr(file, '/')) /* Specific path */
- return envp ? execv(file, argv, envp) : execve(file, argv);
+ return envp ? execve(file, argv, envp) : execv(file, argv);
filelen = strlen(file);
path = NULL;