mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
pposix: Generate an error when a passed string isn’t "unlimited".
This commit is contained in:
parent
1a23a874bc
commit
c1be2da977
1 changed files with 1 additions and 0 deletions
|
@ -552,6 +552,7 @@ rlim_t arg_to_rlimit(lua_State *L, int idx, rlim_t current) {
|
|||
if(strcmp(lua_tostring(L, idx), "unlimited") == 0) {
|
||||
return RLIM_INFINITY;
|
||||
}
|
||||
return luaL_argerror(L, idx, "unexpected type");
|
||||
|
||||
case LUA_TNUMBER:
|
||||
return lua_tointeger(L, idx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue