From: Steven Barth Date: Fri, 19 Sep 2008 12:20:43 +0000 (+0000) Subject: Push full metadata to the file callback (parsed and unparsed) - not only the unparsed... X-Git-Tag: 0.8.0~53 X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=4770351d7db0da44d3c9421eef5b3eacf2db6834;p=project%2Fluci.git Push full metadata to the file callback (parsed and unparsed) - not only the unparsed mime headers --- diff --git a/libs/http/luasrc/http/protocol.lua b/libs/http/luasrc/http/protocol.lua index 93c9e7999..6873d2486 100644 --- a/libs/http/luasrc/http/protocol.lua +++ b/libs/http/luasrc/http/protocol.lua @@ -421,7 +421,7 @@ function mimedecode_message_body( src, msg, filecb ) end if store then - store( field.headers, predata, true ) + store( field, predata, true ) end @@ -439,7 +439,7 @@ function mimedecode_message_body( src, msg, filecb ) data = data:sub( 1, #data - 78 ) if store then - store( field.headers, data, false ) + store( field, data, false ) else return nil, "Invalid MIME section header" end @@ -451,7 +451,7 @@ function mimedecode_message_body( src, msg, filecb ) lchunk, eof = parse_headers( data, field ) inhdr = not eof else - store( field.headers, lchunk, false ) + store( field, lchunk, false ) lchunk, chunk = chunk, nil end end