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/lib501.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'tests/libtest/lib501.c') diff --git a/tests/libtest/lib501.c b/tests/libtest/lib501.c index 4199598fa..2ed1a9ae4 100644 --- a/tests/libtest/lib501.c +++ b/tests/libtest/lib501.c @@ -1,13 +1,14 @@ -#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 *curl; -CURLcode res; -curl = curl_easy_init(); -curl_easy_setopt(curl, CURLOPT_HEADER, TRUE); -res = curl_easy_perform(curl); -curl_easy_cleanup(curl); + (void)URL; /* we don't use this */ + curl_easy_setopt(curl, CURLOPT_HEADER, TRUE); + res = curl_easy_perform(curl); + curl_easy_cleanup(curl); + return res; +} -return res; -#include "last.c" -- cgit v1.2.3