fix little flaw that could make the transfer loop end prematurely

This commit is contained in:
Daniel Stenberg 2007-06-27 21:29:29 +00:00
parent 4cd7f85410
commit 8edbe262d9

View File

@ -155,6 +155,8 @@ int main(void)
} }
if (C < CNT) { if (C < CNT) {
init(cm, C++); init(cm, C++);
U++; /* just to prevent it from remaining at 0 if there are more
URLs to get */
} }
} }
} }