Add a missing semi-colon and remove trailing spaces.

This commit is contained in:
Mark Crane 2015-04-01 07:57:47 +00:00
parent af98b7cf99
commit c74a0e5d8a
1 changed files with 2 additions and 2 deletions

View File

@ -373,7 +373,7 @@ freeswitch.consoleLog("notice", "[voicemail] ".. storage_type .. "\n");
end
if (storage_type == "base64") then
array = explode("://", database["system"]);
local luasql = require "luasql.postgres"
local luasql = require "luasql.postgres";
local env = assert (luasql.postgres());
local db = env:connect(array[2]);
res, serr = db:execute(sql);