Because the existing comment does not match the default value, I'm not sure
what was the original intent. Perhaps it would be better to change the
default behavior:
static Bool strictssl = TRUE; /* Refuse untrusted SSL connections. */
-Mark
---
config.def.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git config.def.h config.def.h
index a1ab211..95d97bf 100644
--- config.def.h
+++ config.def.h
@@ -19,7 +19,7 @@ static char *cookiefile = "~/.surf/cookies.txt";
static char *cookiepolicies = "Aa@"; /* A: accept all; a: accept nothing,
@: accept no third party */
static char *cafile = "/etc/ssl/certs/ca-certificates.crt";
-static char *strictssl = FALSE; /* Refuse untrusted SSL connections */
+static Bool strictssl = FALSE; /* Allow untrusted SSL connections. */
static time_t sessiontime = 3600;
/* Webkit default features */
--
2.4.4