X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Frecur.c;h=1121e5a721a1df618097e916fae652106e774237;hp=d32a1b389f24144119a550809a32eab995acc621;hb=8624553a31b148f9051cc11725bc01d9760fa07b;hpb=4eeabffee6e5b348d36c4f3ba0579ed086226603 diff --git a/src/recur.c b/src/recur.c index d32a1b38..1121e5a7 100644 --- a/src/recur.c +++ b/src/recur.c @@ -253,23 +253,23 @@ retrieve_tree (struct url *start_url_parsed, struct iri *pi) the second time. */ if (dl_url_file_map && hash_table_contains (dl_url_file_map, url)) { - bool is_css_bool; + bool is_css_bool; file = xstrdup (hash_table_get (dl_url_file_map, url)); DEBUGP (("Already downloaded \"%s\", reusing it from \"%s\".\n", url, file)); - if ((is_css_bool = (css_allowed - && downloaded_css_set - && string_set_contains (downloaded_css_set, file))) - || (html_allowed - && downloaded_html_set - && string_set_contains (downloaded_html_set, file))) - { - descend = true; - is_css = is_css_bool; - } + if ((is_css_bool = (css_allowed + && downloaded_css_set + && string_set_contains (downloaded_css_set, file))) + || (html_allowed + && downloaded_html_set + && string_set_contains (downloaded_html_set, file))) + { + descend = true; + is_css = is_css_bool; + } } else {