svn commit: r361856 - in stable: 11/stand/common 12/stand/common
Kyle Evans
kevans at FreeBSD.org
Sat Jun 6 01:56:31 UTC 2020
Author: kevans
Date: Sat Jun 6 01:56:30 2020
New Revision: 361856
URL: https://svnweb.freebsd.org/changeset/base/361856
Log:
MFC r361763: lualoader: drop the filename and word "LUA" from errors
The filename is nearly always wrong since it's /boot/lua/loader.lua, which
is not useful for diagnostics. The actual errmsg will include a lua filename
if this is relevant.
Dropping "LUA" while we're here because that's almost universally
irrelevant to whatever error follows, unless the error states that it's
actually a lua problem.
Both of these are minor nits that just detract from identifying the
pertinent information.
Modified:
stable/11/stand/common/interp_lua.c
Directory Properties:
stable/11/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/12/stand/common/interp_lua.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/11/stand/common/interp_lua.c
==============================================================================
--- stable/11/stand/common/interp_lua.c Sat Jun 6 00:47:59 2020 (r361855)
+++ stable/11/stand/common/interp_lua.c Sat Jun 6 01:56:30 2020 (r361856)
@@ -126,7 +126,7 @@ interp_init(void)
if (interp_include(filename) != 0) {
const char *errstr = lua_tostring(luap, -1);
errstr = errstr == NULL ? "unknown" : errstr;
- printf("Startup error in %s:\nLUA ERROR: %s.\n", filename, errstr);
+ printf("ERROR: %s.\n", errstr);
lua_pop(luap, 1);
setenv("autoboot_delay", "NO", 1);
}
More information about the svn-src-all
mailing list