1
0
mirror of https://github.com/mirror/wget.git synced 2025-03-30 22:20:08 +08:00

* src.hsts.c(hsts_read_database): Use SCNd64 for portable format flags

This commit is contained in:
Darshit Shah 2022-02-26 16:51:21 +01:00
parent 14a7f68f46
commit 6d4a4e56c8

View File

@ -293,7 +293,7 @@ hsts_read_database (hsts_store_t store, FILE *fp, bool merge_with_existing_entri
if (*p == '#')
continue;
items_read = sscanf (p, "%255s %d %d %llu %llu",
items_read = sscanf (p, "%255s %d %d %" SCNd64 " %" SCNd64,
host,
&port,
&include_subdomains,