summaryrefslogtreecommitdiff
path: root/content/urldb.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/urldb.c')
-rw-r--r--content/urldb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/urldb.c b/content/urldb.c
index 242a29c6c..4bdb10e66 100644
--- a/content/urldb.c
+++ b/content/urldb.c
@@ -3557,7 +3557,7 @@ bool urldb_set_hsts_policy(struct nsurl *url, const char *header)
if (max_age == 0) {
h->hsts.expires = 0;
h->hsts.include_sub_domains = false;
- } else if (now + max_age > h->hsts.expires) {
+ } else if ((time_t) (now + max_age) > h->hsts.expires) {
h->hsts.expires = now + max_age;
}