summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/tex/texfileio.w
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex/texfileio.w')
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/texfileio.w8
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/texfileio.w b/Build/source/texk/web2c/luatexdir/tex/texfileio.w
index 73ca7146192..ccae2f15433 100644
--- a/Build/source/texk/web2c/luatexdir/tex/texfileio.w
+++ b/Build/source/texk/web2c/luatexdir/tex/texfileio.w
@@ -1131,7 +1131,7 @@ opennameok(const_string fname, const_string check_var,
if (base[0] == 0 ||
(base[0] == '.' && !IS_DIR_SEP(base[1]) && !STREQ(base, ".tex"))) {
fprintf(stderr, "%s: Not %s to %s (%s = %s).\n",
- program_invocation_name, ok_type_name[action], fname,
+ kpse_invocation_name, ok_type_name[action], fname,
check_var, open_choice);
return false;
}
@@ -1152,7 +1152,7 @@ opennameok(const_string fname, const_string check_var,
|| fname != strstr(fname, texmfoutput)
|| !IS_DIR_SEP(fname[strlen(texmfoutput)])) {
fprintf(stderr, "%s: Not %s to %s (%s = %s).\n",
- program_invocation_name, ok_type_name[action], fname,
+ kpse_invocation_name, ok_type_name[action], fname,
check_var, open_choice);
return false;
}
@@ -1161,7 +1161,7 @@ opennameok(const_string fname, const_string check_var,
anywhere. */
if (fname[0] == '.' && fname[1] == '.' && IS_DIR_SEP(fname[2])) {
fprintf(stderr, "%s: Not %s to %s (%s = %s).\n",
- program_invocation_name, ok_type_name[action], fname,
+ kpse_invocation_name, ok_type_name[action], fname,
check_var, open_choice);
return false;
} else {
@@ -1173,7 +1173,7 @@ opennameok(const_string fname, const_string check_var,
because the "../" case was handled above. */
if (IS_DIR_SEP(dotpair[2]) && IS_DIR_SEP(dotpair[-1])) {
fprintf(stderr, "%s: Not %s to %s (%s = %s).\n",
- program_invocation_name, ok_type_name[action], fname,
+ kpse_invocation_name, ok_type_name[action], fname,
check_var, open_choice);
return false;
}