tFix the ssl trusted check. - surf - customized build of surf, the suckless webkit browser
(HTM) git clone git://src.adamsgaard.dk/surf
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit a78aec66302f36341ab44ef2fbb7d7555eeb755c
(DIR) parent 9eedabe3487193e29b0fe5f29a8d30dc314026cc
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Thu, 30 Jan 2014 19:35:54 +0100
Fix the ssl trusted check.
Thank you Steve Dee <mrdomino@gmail.com>!
Diffstat:
M surf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/surf.c b/surf.c
t@@ -601,8 +601,8 @@ loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
src = webkit_web_frame_get_data_source(frame);
request = webkit_web_data_source_get_request(src);
msg = webkit_network_request_get_message(request);
- c->sslfailed = soup_message_get_flags(msg)
- ^ SOUP_MESSAGE_CERTIFICATE_TRUSTED;
+ c->sslfailed = !(soup_message_get_flags(msg)
+ & SOUP_MESSAGE_CERTIFICATE_TRUSTED);
}
setatom(c, AtomUri, uri);
break;