mod_http_files: send valid ETag header

RFC 2616 section 14 (header field definitions) shows that ETag header content
should be wrapped in double quotes.
This commit is contained in:
Anton Shestakov 2016-07-09 21:55:37 +08:00
parent 1e78e0f236
commit b33e46e4ac

View file

@ -109,7 +109,7 @@ function serve(opts)
local last_modified = os_date('!%a, %d %b %Y %H:%M:%S GMT', attr.modification);
response_headers.last_modified = last_modified;
local etag = ("%02x-%x-%x-%x"):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
local etag = ('"%02x-%x-%x-%x"'):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
response_headers.etag = etag;
local if_none_match = request_headers.if_none_match