diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-08-08 09:28:42 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-08-08 09:28:42 +0200 |
commit | c2e3322fc60e7d69bb0f519797c41cb0898113ee (patch) | |
tree | fad810d351685ce887f28281bb6fa5d500ddee4c /util-src/pposix.c | |
parent | a18251e4cd8c95518ac45bcf063480c2800eb204 (diff) | |
download | prosody-c2e3322fc60e7d69bb0f519797c41cb0898113ee.tar.gz prosody-c2e3322fc60e7d69bb0f519797c41cb0898113ee.zip |
pposix: Generate an error when a passed string isn?t "unlimited".
Diffstat (limited to 'util-src/pposix.c')
-rw-r--r-- | util-src/pposix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index 435af6f0..f9a60600 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -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); |