[hackers] [surf/surf-webkit2] Rename SSL instances to TLS || Quentin Rameau

From: <git_AT_suckless.org>
Date: Thu, 20 Apr 2017 12:21:29 +0200 (CEST)

commit ee854bb09564f869c68d9d63ff8133cf9cf5fa10
Author: Quentin Rameau <quinq_AT_fifth.space>
AuthorDate: Wed Apr 19 17:45:20 2017 +0200
Commit: Quentin Rameau <quinq_AT_fifth.space>
CommitDate: Wed Apr 19 17:45:20 2017 +0200

    Rename SSL instances to TLS

diff --git a/config.def.h b/config.def.h
index fca81c3..32cda3c 100644
--- a/config.def.h
+++ b/config.def.h
_AT_@ -30,7 +30,7 @@ static Parameter defconfig[ParameterLast] = {
         SETB(SiteQuirks, 1),
         SETB(SpellChecking, 0),
         SETV(SpellLanguages, ((char *[]){ "en_US", NULL })),
- SETB(StrictSSL, 1),
+ SETB(StrictTLS, 1),
         SETB(Style, 1),
         SETF(ZoomLevel, 1.0),
 };
diff --git a/surf.1 b/surf.1
index c1d339a..7309308 100644
--- a/surf.1
+++ b/surf.1
_AT_@ -264,7 +264,7 @@ The second part of the indicators specifies modes of the web page itself.
 unencrypted
 .TP
 .B T
-encrypted (SSL)
+encrypted (TLS)
 .TP
 .B U
 attempted encryption but failed
diff --git a/surf.c b/surf.c
index 40c7fe4..d22de3e 100644
--- a/surf.c
+++ b/surf.c
_AT_@ -80,7 +80,7 @@ typedef enum {
         SiteQuirks,
         SpellChecking,
         SpellLanguages,
- StrictSSL,
+ StrictTLS,
         Style,
         ZoomLevel,
         ParameterLast,
_AT_@ -710,7 +710,7 @@ setparameter(Client *c, int refresh, ParamName p, const Arg *a)
                 return; /* do not update */
         case SpellLanguages:
                 return; /* do nothing */
- case StrictSSL:
+ case StrictTLS:
                 webkit_web_context_set_tls_errors_policy(
                     webkit_web_view_get_context(c->view), a->b ?
                     WEBKIT_TLS_ERRORS_POLICY_FAIL :
_AT_@ -960,9 +960,9 @@ newview(Client *c, WebKitWebView *rv)
                  * or one for each view */
                 webkit_web_context_set_process_model(context,
                     WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES);
- /* ssl */
+ /* TLS */
                 webkit_web_context_set_tls_errors_policy(context,
- curconfig[StrictSSL].val.b ? WEBKIT_TLS_ERRORS_POLICY_FAIL :
+ curconfig[StrictTLS].val.b ? WEBKIT_TLS_ERRORS_POLICY_FAIL :
                     WEBKIT_TLS_ERRORS_POLICY_IGNORE);
                 /* disk cache */
                 webkit_web_context_set_cache_model(context,
Received on Thu Apr 20 2017 - 12:21:29 CEST

This archive was generated by hypermail 2.3.0 : Thu Apr 20 2017 - 12:24:24 CEST