diff options
author | Kim Alvefur <zash@zash.se> | 2020-04-25 20:55:00 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-04-25 20:55:00 +0200 |
commit | 29a4d0f107bea49e6e4ec657cd7929f3f25881a2 (patch) | |
tree | 00b1a81c96192ef3c67b92b492dcf2be470039c8 /plugins | |
parent | 848f4af9ed958d9c8ccaa396cd7bed69e3c2315a (diff) | |
download | prosody-29a4d0f107bea49e6e4ec657cd7929f3f25881a2.tar.gz prosody-29a4d0f107bea49e6e4ec657cd7929f3f25881a2.zip |
mod_http_files: Avoid using inode in etag, fix #1498
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http_files.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua index 1dae0d6d..a8398c01 100644 --- a/plugins/mod_http_files.lua +++ b/plugins/mod_http_files.lua @@ -112,7 +112,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 = ('"%x-%x-%x"'):format(attr.change or 0, attr.size or 0, attr.modification or 0); response_headers.etag = etag; local if_none_match = request_headers.if_none_match |