diff options
Diffstat (limited to 'src/recur.c')
-rw-r--r-- | src/recur.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/recur.c b/src/recur.c index 139fe2e..72274fb 100644 --- a/src/recur.c +++ b/src/recur.c @@ -586,6 +586,11 @@ download_child_p (const struct urlpos *upos, struct url *parent, int depth, goto out; } } + if (!accept_url (url)) + { + DEBUGP (("%s is excluded/not-included through regex.\n", url)); + goto out; + } /* 6. Check for acceptance/rejection rules. We ignore these rules for directories (no file name to match) and for non-leaf HTMLs, |