| tFix the ssl trusted check. - surf - customized build of surf, the suckless web… | |
| git clone git://src.adamsgaard.dk/surf | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit a78aec66302f36341ab44ef2fbb7d7555eeb755c | |
| parent 9eedabe3487193e29b0fe5f29a8d30dc314026cc | |
| Author: Christoph Lohmann <[email protected]> | |
| Date: Thu, 30 Jan 2014 19:35:54 +0100 | |
| Fix the ssl trusted check. | |
| Thank you Steve Dee <[email protected]>! | |
| Diffstat: | |
| M surf.c | 4 ++-- | |
| 1 file changed, 2 insertions(+), 2 deletions(-) | |
| --- | |
| diff --git a/surf.c b/surf.c | |
| t@@ -601,8 +601,8 @@ loadstatuschange(WebKitWebView *view, GParamSpec *pspec, 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; |