diff --git a/src/ChangeLog b/src/ChangeLog index 0f7c0696..f71b7b9b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-11-24 Hrvoje Niksic + + * recur.c (recursive_retrieve): Fix typo. + 2001-11-23 Hrvoje Niksic * progress.c (create_image): Don't translate "%ld ". diff --git a/src/recur.c b/src/recur.c index 11c30a21..019f3926 100644 --- a/src/recur.c +++ b/src/recur.c @@ -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)