1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

mod_lua/dbd: Only 2 arguments are passed, so let's tell Lua to only return 2, not 3.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1432881 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2013-01-14 11:37:09 +00:00
parent 9e0d89e3f8
commit 3c72b3caf0

View File

@@ -809,7 +809,7 @@ AP_LUA_DECLARE(int) lua_db_acquire(lua_State *L)
"mod_lua not compatible with APR in get_driver"); "mod_lua not compatible with APR in get_driver");
} }
lua_pushinteger(L, rc); lua_pushinteger(L, rc);
return 3; return 2;
} }
} }