Remove extraneous do..end block

This commit is contained in:
Dorian Wouters 2017-06-01 17:39:37 -04:00
parent 5c758ba5b1
commit e5801a1e0c
No known key found for this signature in database
GPG Key ID: 6E9DA8063322434B
1 changed files with 16 additions and 17 deletions

View File

@ -194,7 +194,7 @@ do
thismod.table_exists = table_exists
local auth_table_created
do -- Auth table existence check and setup
-- Auth table existence check and setup
if not table_exists(tables.auths.name) then
-- Auth table doesn't exist, create it
local S = tables.auths.schema
@ -211,7 +211,6 @@ do
"'")
auth_table_created = true
end
end
local S = tables.auths.schema
local get_auth_stmt = conn:prepare('SELECT ' .. S.password .. ',' .. S.privs .. ',' ..