mirror of
https://github.com/curl/curl.git
synced 2026-05-19 18:26:19 +03:00
examples/crawler: fix variable
A variable missed in the previous rename cleanup
Follow-up to 928363f28c
Reported-by: Gisle Vanem
Closes #19446
This commit is contained in:
parent
7e87255020
commit
8e321a53df
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ int main(void)
|
|||
if(is_html(ctype) && mem->size > 100) {
|
||||
if(pending < max_requests &&
|
||||
(complete + pending) < max_total) {
|
||||
pending += follow_links(multi_curl, mem, url);
|
||||
pending += follow_links(multi, mem, url);
|
||||
still_running = 1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue