diff options
author | Quentin Rameau <quinq@fifth.space> | 2015-07-13 13:31:22 +0200 |
---|---|---|
committer | Quentin Rameau <quinq@fifth.space> | 2015-07-13 13:31:22 +0200 |
commit | 9b6998e7ae06ef4df14f84a902c24c49c0968a1d (patch) | |
tree | 7c8b6d58b535633a76667ca116c4de4dd1d56cb1 /config.def.h | |
parent | b4ca032b8c61402c1ccdf29a64fed4f605cbcf7e (diff) | |
download | surf-9b6998e7ae06ef4df14f84a902c24c49c0968a1d.tar.gz surf-9b6998e7ae06ef4df14f84a902c24c49c0968a1d.tar.bz2 surf-9b6998e7ae06ef4df14f84a902c24c49c0968a1d.zip |
Fix type of strictssl property.
Thanks to Mark Edgar <medgar123@gmail.com> for having spotted this.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index a1ab211..1eb9566 100644 --- a/config.def.h +++ b/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; /* Refuse untrusted SSL connections */ static time_t sessiontime = 3600; /* Webkit default features */ |