* luci/libs/http: use aliased ltn12. instead of luci.ltn12.

This commit is contained in:
Jo-Philipp Wich 2008-07-19 16:53:34 +00:00
parent 5350456779
commit 040efb954f

View file

@ -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