flua: chown(2) binding, fix bad copy/paste

This commit is contained in:
Baptiste Daroussin 2022-11-25 09:05:40 +01:00
parent a1ab15abe2
commit 280f11f1be

View File

@ -102,7 +102,7 @@ lua_chown(lua_State *L)
group = g->gr_gid;
else
return (luaL_argerror(L, 3,
lua_pushfstring(L, "unknown user %s",
lua_pushfstring(L, "unknown group %s",
lua_tostring(L, 3))));
} else if (!lua_isnoneornil(L, 3)) {
const char *type = luaL_typename(L, 3);