From cfe0d19f1d679bd8fc5897b8cbf00d0fb0342e5b Mon Sep 17 00:00:00 2001 From: Mohammed Morsi Date: Wed, 11 Mar 2009 11:05:46 -0400 Subject: [PATCH] remove ssl cert checking until ssl is fully / properly integration needed to get ovirt-viewer working against a bare metal server install --- wui_thread.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wui_thread.c b/wui_thread.c index 9dab95c..c51c43f 100644 --- a/wui_thread.c +++ b/wui_thread.c @@ -669,6 +669,10 @@ do_login (void) CURL_CHECK_ERROR (curl_easy_setopt, (curl, CURLOPT_FOLLOWLOCATION, (long) 1)); CURL_CHECK_ERROR (curl_easy_setopt, (curl, CURLOPT_MAXREDIRS, (long) 10)); + // FIXME when ssl is introduced into ovirt-viewer, remove there two lines + CURL_CHECK_ERROR(curl_easy_setopt, (curl, CURLOPT_SSL_VERIFYHOST, 0)); + CURL_CHECK_ERROR(curl_easy_setopt, (curl, CURLOPT_SSL_VERIFYPEER, 0)); + /* Try to fetch the URI. */ r = CURL_CHECK_ERROR (curl_easy_perform, (curl)); if (r != CURLE_OK) { -- 1.8.3.1