--- curl-old/lib/url.c	2009-01-27 03:30:49.000000000 +0100
+++ curl/lib/url.c	2009-01-27 03:41:17.000000000 +0100
@@ -671,10 +671,10 @@
   set->hide_progress = TRUE;  /* CURLOPT_NOPROGRESS changes these */
 
   /*
-   * libcurl 7.10 introduced SSL verification *by default*! This needs to be
-   * switched off unless wanted.
+   * libcurl 7.10 introduced SSL verification *by default*!
+   * Forcing it to FALSE to make it work without any certificate
    */
-  set->ssl.verifypeer = TRUE;
+  set->ssl.verifypeer = FALSE;
   set->ssl.verifyhost = 2;
   set->ssh_auth_types = CURLSSH_AUTH_DEFAULT; /* defaults to any auth
                                                       type */

