aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http_files.lua
diff options
context:
space:
mode:
authorAnton Shestakov <av6@dwimlabs.net>2016-07-09 21:55:37 +0800
committerAnton Shestakov <av6@dwimlabs.net>2016-07-09 21:55:37 +0800
commitb33e46e4acf543c1c3b2f72ad3da28a2873e1b97 (patch)
treef2ec23ca57050c8db2692d007db9a1d756ce2bb1 /plugins/mod_http_files.lua
parent1e78e0f2365dcf25ff5fb863afc783ebc158ad9b (diff)
downloadprosody-b33e46e4acf543c1c3b2f72ad3da28a2873e1b97.tar.gz
prosody-b33e46e4acf543c1c3b2f72ad3da28a2873e1b97.zip
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.
Diffstat (limited to 'plugins/mod_http_files.lua')
-rw-r--r--plugins/mod_http_files.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua
index 3b602495..40f46c9c 100644
--- a/plugins/mod_http_files.lua
+++ b/plugins/mod_http_files.lua
@@ -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