diff options
author | Troels Henriksen <athas@sigkill.dk> | 2011-11-04 13:23:57 +0100 |
---|---|---|
committer | Troels Henriksen <athas@sigkill.dk> | 2011-11-04 13:23:57 +0100 |
commit | bc73b48743eb0b51905322cad25b4647569e7996 (patch) | |
tree | 1102d3fb2e1f44b7451b7a2f8017b76032b659b6 /config.def.h | |
parent | 2e62372969239285705504187b0211039b5ae619 (diff) | |
download | surf-bc73b48743eb0b51905322cad25b4647569e7996.tar.gz surf-bc73b48743eb0b51905322cad25b4647569e7996.tar.bz2 surf-bc73b48743eb0b51905322cad25b4647569e7996.zip |
Add SSL verification patch by Nick White.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index bea744c..dd18e83 100644 --- a/config.def.h +++ b/config.def.h @@ -1,11 +1,14 @@ /* modifier 0 means no modifier */ static char *useragent = "Surf/"VERSION" (X11; U; Unix; en-US) AppleWebKit/531.2+ Compatible (Safari)"; -static char *progress = "#FF0000"; +static char *progress = "#0066FF"; +static char *progress_untrust = "#FF6600"; static char *progress_trust = "#00FF00"; static char *stylefile = ".surf/style.css"; static char *scriptfile = ".surf/script.js"; static char *cookiefile = ".surf/cookies.txt"; static time_t sessiontime = 3600; +static char *cafile = "/etc/ssl/certs/ca-certificates.crt"; +static char *strictssl = FALSE; /* Refuse untrusted SSL connections */ #define HIDE_BACKGROUND FALSE #define SETPROP(p, q) { .v = (char *[]){ "/bin/sh", "-c", \ |