summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/Testing
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-11 20:42:43 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-11 20:42:43 (GMT)
commit6beecfa3de806bf54de02d0a20c76c851e07a188 (patch)
tree8087ac2ba93ff222e1fca316c585697da85dd0df /Source/CTest/Curl/Testing
parent64f6711e1ccfd4a310d7a3dcae54f1b2f6f59cdb (diff)
downloadCMake-6beecfa3de806bf54de02d0a20c76c851e07a188.zip
CMake-6beecfa3de806bf54de02d0a20c76c851e07a188.tar.gz
CMake-6beecfa3de806bf54de02d0a20c76c851e07a188.tar.bz2
Better page, so the resulting dart page will not refresh
Diffstat (limited to 'Source/CTest/Curl/Testing')
-rw-r--r--Source/CTest/Curl/Testing/curltest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CTest/Curl/Testing/curltest.c b/Source/CTest/Curl/Testing/curltest.c
index 106483d..1da42d3 100644
--- a/Source/CTest/Curl/Testing/curltest.c
+++ b/Source/CTest/Curl/Testing/curltest.c
@@ -16,7 +16,7 @@ int GetFtpFile(void)
res = curl_easy_perform(curl);
if ( res != 0 )
{
- printf("Error fetching: http://www.cmake.org/\n");
+ printf("Error fetching: ftp://public.kitware.com/pub/cmake/cygwin/setup.hint\n");
retVal = 1;
}
@@ -43,11 +43,11 @@ int GetWebFile(void)
curl_easy_setopt(curl, CURLOPT_HEADER, 1);
/* get the first document */
- curl_easy_setopt(curl, CURLOPT_URL, "http://www.cmake.org/");
+ curl_easy_setopt(curl, CURLOPT_URL, "http://www.cmake.org/HTML/Sponsors.html");
res = curl_easy_perform(curl);
if ( res != 0 )
{
- printf("Error fetching: http://www.cmake.org/\n");
+ printf("Error fetching: http://www.cmake.org/HTML/Sponsors.html\n");
retVal = 1;
}