summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2010-04-24 08:11:04 +0000
committerTaco Hoekwater <taco@elvenkind.com>2010-04-24 08:11:04 +0000
commit6cd292cb6b8e30aa5bc19c2a2d70e8c8626730bf (patch)
tree1c1025195618c8dc7124954858268d7a9f2ff039 /Build/source/texk/web2c
parent60e3c0936bfb46701ca6791d58a40b193be2bd0e (diff)
another luatex correction
git-svn-id: svn://tug.org/texlive/trunk@17981 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c')
-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;