From d4b0486cc42647e24e6dc740de1f9de6770a854c Mon Sep 17 00:00:00 2001 From: hniksic Date: Sat, 20 Apr 2002 17:54:13 -0700 Subject: [PATCH] [svn] Remove needless level of indentation. --- src/recur.c | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/src/recur.c b/src/recur.c index da277415..7f2b5549 100644 --- a/src/recur.c +++ b/src/recur.c @@ -508,25 +508,22 @@ download_child_p (const struct urlpos *upos, struct url *parent, int depth, } } - /* 6. */ - { - /* Check for acceptance/rejection rules. We ignore these rules - for directories (no file name to match) and for HTML documents, - which might lead to other files that do need to be downloaded. - That is, unless we've exhausted the recursion depth anyway. */ - if (u->file[0] != '\0' - && !(has_html_suffix_p (u->file) - && depth < opt.reclevel - 1 - && depth != INFINITE_RECURSION)) - { - if (!acceptable (u->file)) - { - DEBUGP (("%s (%s) does not match acc/rej rules.\n", - url, u->file)); - goto out; - } - } - } + /* 6. Check for acceptance/rejection rules. We ignore these rules + for directories (no file name to match) and for HTML documents, + which might lead to other files that do need to be downloaded. + That is, unless we've exhausted the recursion depth anyway. */ + if (u->file[0] != '\0' + && !(has_html_suffix_p (u->file) + && depth < opt.reclevel - 1 + && depth != INFINITE_RECURSION)) + { + if (!acceptable (u->file)) + { + DEBUGP (("%s (%s) does not match acc/rej rules.\n", + url, u->file)); + goto out; + } + } /* 7. */ if (u->scheme == parent->scheme) -- 2.39.2