aboutsummaryrefslogtreecommitdiffstats
path: root/fm.h
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2014-10-15 09:15:02 +0000
committerTatsuya Kinoshita <tats@debian.org>2014-10-15 09:15:02 +0000
commita090abc52e24ad5310d467f0df6ee8426d338062 (patch)
tree86b040b39297c1e616cd79ecebaefedee363d729 /fm.h
parentMerge branch 'feature/debian-version' (diff)
parentDisable SSLv3 by default [CVE-2014-3566] (diff)
downloadw3m-a090abc52e24ad5310d467f0df6ee8426d338062.tar.gz
w3m-a090abc52e24ad5310d467f0df6ee8426d338062.zip
Merge branch 'bug/ssl-init'
Diffstat (limited to 'fm.h')
-rw-r--r--fm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fm.h b/fm.h
index 2216b06..149a02f 100644
--- a/fm.h
+++ b/fm.h
@@ -1159,7 +1159,7 @@ global int view_unseenobject init(TRUE);
#endif
#if defined(USE_SSL) && defined(USE_SSL_VERIFY)
-global int ssl_verify_server init(FALSE);
+global int ssl_verify_server init(TRUE);
global char *ssl_cert_file init(NULL);
global char *ssl_key_file init(NULL);
global char *ssl_ca_path init(NULL);
@@ -1168,7 +1168,7 @@ global int ssl_path_modified init(FALSE);
#endif /* defined(USE_SSL) &&
* defined(USE_SSL_VERIFY) */
#ifdef USE_SSL
-global char *ssl_forbid_method init(NULL);
+global char *ssl_forbid_method init("2, 3");
#endif
global int is_redisplay init(FALSE);