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 fb508143f96..2dbb702ea7d 100644
--- a/Build/source/texk/web2c/luatexdir/ChangeLog
+++ b/Build/source/texk/web2c/luatexdir/ChangeLog
@@ -1,5 +1,9 @@
2010-04-23 Taco Hoekwater <taco@luatex>
+ * lua/loslibext.c: fix os.exec() and os.spawn() once more
+
+2010-04-23 Taco Hoekwater <taco@luatex>
+
* lua/loslibext.c: fix os.exec() and os.spawn()
* luatex_svnversion.h: updated to reflect the version of 0.60.x branch
diff --git a/Build/source/texk/web2c/luatexdir/lua/loslibext.c b/Build/source/texk/web2c/luatexdir/lua/loslibext.c
index 4cc6af2c285..8cbeb086650 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) : execve(file, argv, envp);
+ return envp ? execv(file, argv, envp) : execve(file, argv);
filelen = strlen(file);
path = NULL;