From: Jo-Philipp Wich Date: Sat, 19 Jul 2008 16:53:34 +0000 (+0000) Subject: * luci/libs/http: use aliased ltn12. instead of luci.ltn12. X-Git-Tag: 0.8.0~604 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=040efb954fd88f9c365dc9e55a6865b6da271704 * luci/libs/http: use aliased ltn12. instead of luci.ltn12. --- diff --git a/libs/http/luasrc/http/protocol.lua b/libs/http/luasrc/http/protocol.lua index 1d01b15b1..acf47d23f 100644 --- a/libs/http/luasrc/http/protocol.lua +++ b/libs/http/luasrc/http/protocol.lua @@ -397,7 +397,7 @@ function mimedecode_message_body( src, msg, filecb ) return true end - return luci.ltn12.pump.all( src, snk ) + return ltn12.pump.all( src, snk ) end @@ -448,7 +448,7 @@ function urldecode_message_body( src, msg ) return true end - return luci.ltn12.pump.all( src, snk ) + return ltn12.pump.all( src, snk ) end