1
0
mirror of https://github.com/mirror/wget.git synced 2025-04-03 16:10:15 +08:00

* src/html-url.c(get_urls_html_fm): Add message in verbose mode with no-follow attribute

This commit is contained in:
Darshit Shah 2019-02-19 23:25:05 +01:00
parent 8d8abcffdf
commit e39be32838

View File

@ -837,7 +837,11 @@ get_urls_html_fm (const char *file, const struct file_memory *fm,
#endif
xfree (meta_charset);
if (ctx.nofollow) {
logprintf(LOG_VERBOSE, _("no-follow attribute found in %s. Will not follow any links on this page\n"), file);
}
DEBUGP (("no-follow in %s: %d\n", file, ctx.nofollow));
if (meta_disallow_follow)
*meta_disallow_follow = ctx.nofollow;