diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-09-08 12:03:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-09-08 12:03:55 +0000 |
commit | e9160a31e04601beabdcba68a2fa0d051ac78398 (patch) | |
tree | 153f4eaa346055cc4c7f736b07f0ca9b5b7cddee /tests/libtest | |
parent | 0a670c578fa89169f69ab9acd5e328ceaee77477 (diff) |
removed the comment that isn't valid for this file, just a copy'n paste error
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib530.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/libtest/lib530.c b/tests/libtest/lib530.c index 3b2c95051..85b2e74ad 100644 --- a/tests/libtest/lib530.c +++ b/tests/libtest/lib530.c @@ -8,24 +8,10 @@ * $Id$ */ -/* - * This code sets up multiple easy handles that transfer a single file from - * the same URL, in a serial manner after each other. Due to the connection - * sharing within the multi handle all transfers are performed on the same - * persistent connection. - * - * This source code is used for lib526 _and_ lib527 with only #ifdefs - * controlling the small differences. lib526 closes all easy handles after - * they all have transfered the file over the single connection, while lib527 - * closes each easy handle after each single transfer. 526 and 527 use FTP, - * while 528 uses the lib526 tool but use HTTP. - */ - #include "test.h" #include <sys/types.h> #include <sys/stat.h> -#include <fcntl.h> #define NUM_HANDLES 4 @@ -36,7 +22,6 @@ int test(char *URL) int running; char done=FALSE; CURLM *m; - int current=0; int i; /* In windows, this will init the winsock stuff */ |