diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-06-08 21:56:30 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-06-08 21:56:30 +0000 |
commit | 55a69ebea68731d2d76b6df7337c9c80265d5b96 (patch) | |
tree | 8abda94e3bb44460759f818a2123288c0b9fec32 /src | |
parent | d6b3850562404554ddd570c7c5f3190f3ab94013 (diff) |
Gisle's patch that'll allow curl to continue with the following URLs even
if one transfer fails.
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 25fcec519..9551cfe26 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) */ |