diff options
author | Steven Barth <steven@midlink.org> | 2008-11-29 21:58:39 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-11-29 21:58:39 +0000 |
commit | 0b34ab07d4834e7b8329f50a3fe64df3ae232053 (patch) | |
tree | cdc2417e8e9666ee73aa244405e5f6c73fe66a0d /libs/web/luasrc/http.lua | |
parent | a4fcc13388f2795b83921d1f0bd85b4d1d49ac7e (diff) |
Scope compatibility fixes
Diffstat (limited to 'libs/web/luasrc/http.lua')
-rw-r--r-- | libs/web/luasrc/http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/http.lua b/libs/web/luasrc/http.lua index c5a85ea4d..bac997952 100644 --- a/libs/web/luasrc/http.lua +++ b/libs/web/luasrc/http.lua @@ -25,7 +25,7 @@ limitations under the License. ]]-- local ltn12 = require "luci.ltn12" -local proto = require "luci.http.protocol" +local protocol = require "luci.http.protocol" local util = require "luci.util" local string = require "string" local coroutine = require "coroutine" |