viking

webkit based web browser for Enlightenment
Log | Files | Refs | LICENSE

commit a4069e908a03ebb7c0c5d906770113c8a37697ec
parent b69818b7ef8b5eec4f97c6af619f67dc0f0c29e4
Author: Kyle Milz <kmilz@ucalgary.ca>
Date:   Wed, 26 Sep 2012 12:41:56 -0600

don't fail on bad ssl connections

Diffstat:
Msrc/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.c b/src/main.c @@ -529,7 +529,7 @@ setup_gui(App_Data *ad) } static char ca_bundle[MAX_SETTING_SIZE] = "/etc/ssl/certs/ca-certificates.crt"; -static Eina_Bool strict_ssl = TRUE; /* FALSE will accept any SSL certificate at face value */ +static Eina_Bool strict_ssl = EINA_FALSE; /* FALSE will accept any SSL certificate at face value */ static void setup_network(App_Data *ad)