From 0f493b6038d257bbfea2344a58847fedc9378671 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 12 Dec 2002 13:40:16 +0000 Subject: fixes --- tests/libtest/lib500.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'tests/libtest/lib500.c') diff --git a/tests/libtest/lib500.c b/tests/libtest/lib500.c index a825b930c..f78ab5561 100644 --- a/tests/libtest/lib500.c +++ b/tests/libtest/lib500.c @@ -1,12 +1,13 @@ -#include "first.c" +#include "test.h" -fprintf(stderr, "URL: %s\n", argv[1]); +CURLcode test(char *URL) +{ + CURLcode res; + CURL *curl = curl_easy_init(); + curl_easy_setopt(curl, CURLOPT_URL, URL); + curl_easy_setopt(curl, CURLOPT_HEADER, TRUE); + res = curl_easy_perform(curl); + curl_easy_cleanup(curl); + return res; +} -CURL *curl; -curl = curl_easy_init(); -curl_easy_setopt(curl, CURLOPT_URL, argv[1]); -curl_easy_setopt(curl, CURLOPT_HEADER, TRUE); -curl_easy_perform(curl); -curl_easy_cleanup(curl); - -#include "last.c" -- cgit v1.2.3