From 55a69ebea68731d2d76b6df7337c9c80265d5b96 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Tue, 8 Jun 2004 21:56:30 +0000
Subject: [PATCH] Gisle's patch that'll allow curl to continue with the
 following URLs even if one transfer fails.

---
 src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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) */
-- 
GitLab