diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7a6c2b3cb5..85a8077606 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2012-07-09 18:37 UTC+0200 Viktor Szakats (harbour syenar.net) + * contrib/hbcurl/tests/ftp_uldl.prg + ! fixed broken link + 2012-07-09 18:19 UTC+0200 Viktor Szakats (harbour syenar.net) * bin/hbcommit.hb % minor optimization to prev diff --git a/harbour/contrib/hbcurl/tests/ftp_uldl.prg b/harbour/contrib/hbcurl/tests/ftp_uldl.prg index aad86da7e6..0df44df3d3 100644 --- a/harbour/contrib/hbcurl/tests/ftp_uldl.prg +++ b/harbour/contrib/hbcurl/tests/ftp_uldl.prg @@ -144,7 +144,7 @@ PROCEDURE Main( cDL, cUL ) /* Now let's download to memory */ ? curl_easy_setopt( curl, HB_CURLOPT_DOWNLOAD ) - ? curl_easy_setopt( curl, HB_CURLOPT_URL, "http://kent.dl.sourceforge.net/sourceforge/harbour-project/harbour-static-0.99.2-0mdk20070.i586.rpm" ) + ? curl_easy_setopt( curl, HB_CURLOPT_URL, cDL ) ? curl_easy_setopt( curl, HB_CURLOPT_SSL_VERIFYPEER, .F. ) ? curl_easy_setopt( curl, HB_CURLOPT_SSL_VERIFYHOST, .F. ) ? curl_easy_setopt( curl, HB_CURLOPT_DL_BUFF_SETUP )