mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pposix: Expose ENOENT constant (usually 2, but you never know)
This commit is contained in:
parent
fc38b8c4f4
commit
82755e48e8
1 changed files with 5 additions and 0 deletions
|
@ -835,6 +835,11 @@ int luaopen_util_pposix(lua_State *L) {
|
|||
lua_newtable(L);
|
||||
luaL_setfuncs(L, exports, 0);
|
||||
|
||||
#ifdef ENOENT
|
||||
lua_pushinteger(L, ENOENT);
|
||||
lua_setfield(L, -2, "ENOENT");
|
||||
#endif
|
||||
|
||||
lua_pushliteral(L, "pposix");
|
||||
lua_setfield(L, -2, "_NAME");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue