summaryrefslogtreecommitdiff
path: root/src/dillo.cc
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2015-05-28 18:38:06 +0000
committercorvid <devnull@localhost>2015-05-28 18:38:06 +0000
commitba68c40f16755a32bf70f49bdf1d39d86adc741e (patch)
tree1eb532cbc7425f6d897e513a64b8d03a089b8665 /src/dillo.cc
parentea14c266b84296761354f63d746a289db0bb4918 (diff)
'ssl' -> 'tls' where reasonable, given that ssl3 is dead and all
I used 'hg rename' and expected (at least hoped) that 'hg diff' would do what I would naturally want, but no.
Diffstat (limited to 'src/dillo.cc')
-rw-r--r--src/dillo.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dillo.cc b/src/dillo.cc
index 2bfab238..6e28f155 100644
--- a/src/dillo.cc
+++ b/src/dillo.cc
@@ -45,7 +45,7 @@
#include "dns.h"
#include "web.hh"
-#include "IO/ssl.h"
+#include "IO/tls.h"
#include "IO/Url.h"
#include "IO/mime.h"
#include "capi.h"
@@ -477,7 +477,7 @@ int main(int argc, char **argv)
a_Dns_init();
a_Web_init();
a_Http_init();
- a_Ssl_init();
+ a_Tls_init();
a_Mime_init();
a_Capi_init();
a_Dicache_init();
@@ -599,7 +599,7 @@ int main(int argc, char **argv)
a_Cache_freeall();
a_Dicache_freeall();
a_Http_freeall();
- a_Ssl_freeall();
+ a_Tls_freeall();
a_Dns_freeall();
a_History_freeall();
a_Prefs_freeall();