From eff18763a1fdc37a45321dfc95f7bbfcec89777f Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Thu, 28 Jan 2010 10:27:09 +0000 Subject: portability fix --- tests/libtest/lib568.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'tests/libtest/lib568.c') diff --git a/tests/libtest/lib568.c b/tests/libtest/lib568.c index 5e59a9cae..c9406b0ec 100644 --- a/tests/libtest/lib568.c +++ b/tests/libtest/lib568.c @@ -10,10 +10,12 @@ #include "test.h" -#include -#include -#include +#ifdef HAVE_SYS_STAT_H #include +#endif +#ifdef HAVE_FCNTL_H +#include +#endif #include @@ -34,7 +36,7 @@ int test(char *URL) CURL *curl; int sdp; FILE *sdpf; - struct stat file_info; + struct_stat file_info; char *stream_uri; int request=1; struct curl_slist *custom_headers=NULL; @@ -61,9 +63,10 @@ int test(char *URL) sdp = open("log/file568.txt", O_RDONLY); fstat(sdp, &file_info); - sdpf = fdopen(sdp, "rb"); + close(sdp); + + sdpf = fopen("log/file568.txt", "rb"); if(sdpf == NULL) { - close(sdp); fprintf(stderr, "can't open log/file568.txt\n"); return TEST_ERR_MAJOR_BAD; } @@ -77,13 +80,11 @@ int test(char *URL) res = curl_easy_perform(curl); if(res) { fclose(sdpf); - close(sdp); return res; } curl_easy_setopt(curl, CURLOPT_UPLOAD, 0L); fclose(sdpf); - close(sdp); /* Make sure we can do a normal request now */ stream_uri = suburl(URL, request++); -- cgit v1.2.3