mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
BUG/MINOR: lua: missing "\n" in error message
Just replace ".n" by "\n" This could be backported until 1.9, but it is not so important.
This commit is contained in:
parent
f965b2ad13
commit
de6145f747
1 changed files with 1 additions and 1 deletions
|
|
@ -8004,7 +8004,7 @@ static int hlua_load(char **args, int section_type, struct proxy *curpx,
|
|||
lua_pop(gL.T, 1);
|
||||
return -1;
|
||||
case LUA_ERRMEM:
|
||||
memprintf(err, "Lua out of memory error.n");
|
||||
memprintf(err, "Lua out of memory error\n");
|
||||
return -1;
|
||||
case LUA_ERRERR:
|
||||
memprintf(err, "Lua message handler error: %s\n", lua_tostring(gL.T, -1));
|
||||
|
|
|
|||
Loading…
Reference in a new issue