diff options
author | Sebastian Geerken <devnull@localhost> | 2015-07-06 22:37:37 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-07-06 22:37:37 +0200 |
commit | 9610fb52086c39ab10c2979c79a98079745137da (patch) | |
tree | 5df4319a20b63cbb7e0872318532087475ebb221 /src/dillo.cc | |
parent | 9500f94781023d15783f4c8158c17c112135a221 (diff) | |
parent | 78c910dc93d8772a0b1af7fc6ae3865e2efdfb3c (diff) |
Merge with main repo.
Diffstat (limited to 'src/dillo.cc')
-rw-r--r-- | src/dillo.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dillo.cc b/src/dillo.cc index 62ff9685..c7ae62c2 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -51,6 +51,7 @@ #include "capi.h" #include "dicache.h" #include "cookies.h" +#include "hsts.h" #include "domain.h" #include "auth.h" #include "styleengine.hh" @@ -469,6 +470,7 @@ int main(int argc, char **argv) a_Dicache_init(); a_Bw_init(); a_Cookies_init(); + a_Hsts_init(Paths::getPrefsFP(PATHS_HSTS_PRELOAD)); a_Auth_init(); a_UIcmd_init(); StyleEngine::init(); @@ -582,6 +584,7 @@ int main(int argc, char **argv) */ a_Domain_freeall(); a_Cookies_freeall(); + a_Hsts_freeall(); a_Cache_freeall(); a_Dicache_freeall(); a_Http_freeall(); |