summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-01-25 18:57:31 +0100
committerJo-Philipp Wich <jow@openwrt.org>2015-01-25 18:57:31 +0100
commitd404cd06b657cdcd97555362abec7966e339fd6d (patch)
tree36d5e942ad2cc3cc8f08b4e4a7c02d571ae207c5
parent7352ec423fb99a7970b0765287503abee05a56cd (diff)
downloaduhttpd2-d404cd06b657cdcd97555362abec7966e339fd6d.tar.gz
file: explicitely cast st_mtime to uint64_t when generating ETag
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 73e5a5f..c8833b6 100644
--- a/file.c
+++ b/file.c
@@ -289,7 +289,7 @@ static const char * uh_file_mime_lookup(const char *path)
static const char * uh_file_mktag(struct stat *s, char *buf, int len)
{
snprintf(buf, len, "\"%" PRIx64 "-%" PRIx64 "-%" PRIx64 "\"",
- s->st_ino, s->st_size, s->st_mtime);
+ s->st_ino, s->st_size, (uint64_t)s->st_mtime);
return buf;
}