[svn] Fix typo that made us never use robots.txt.

This commit is contained in:
hniksic 2001-11-23 17:48:28 -08:00
parent 5fbf0eb091
commit 1da2947d50
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-11-24 Hrvoje Niksic <hniksic@arsdigita.com>
* recur.c (recursive_retrieve): Fix typo.
2001-11-23 Hrvoje Niksic <hniksic@arsdigita.com>
* progress.c (create_image): Don't translate "%ld ".

View File

@ -377,7 +377,7 @@ recursive_retrieve (const char *file, const char *this_url)
}
}
/* What about robots.txt? */
if (!inl && opt.use_robots && u->scheme == SCHEME_FTP)
if (!inl && opt.use_robots && u->scheme == SCHEME_HTTP)
{
struct robot_specs *specs = res_get_specs (u->host, u->port);
if (!specs)