From: Daniel Stenberg Date: Tue, 8 Jun 2004 21:56:30 +0000 (+0000) Subject: Gisle's patch that'll allow curl to continue with the following URLs even X-Git-Tag: curl-7_12_1~311 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55a69ebea68731d2d76b6df7337c9c80265d5b96;p=thirdparty%2Fcurl.git Gisle's patch that'll allow curl to continue with the following URLs even if one transfer fails. --- diff --git a/src/main.c b/src/main.c index 25fcec5199..9551cfe268 100644 --- a/src/main.c +++ b/src/main.c @@ -2904,7 +2904,7 @@ operate(struct Configurable *config, int argc, char *argv[]) } /* loop through the list of given URLs */ - while(urlnode && !res) { + while(urlnode) { char *dourl; /* get the full URL (it might be NULL) */