]> sjero.net Git - wget/commitdiff
[svn] Fix typo that made us never use robots.txt.
authorhniksic <devnull@localhost>
Sat, 24 Nov 2001 01:48:28 +0000 (17:48 -0800)
committerhniksic <devnull@localhost>
Sat, 24 Nov 2001 01:48:28 +0000 (17:48 -0800)
src/ChangeLog
src/recur.c

index 0f7c0696795153c3c26acde97a872966906b2478..f71b7b9b8b003f60402cd72cb8242bb2cee8e33e 100644 (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 ".
index 11c30a2157e00ba2f433cba0e98045b3bb9bb2a4..019f39268140210c9909ea4c05ef2d1e589bde16 100644 (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)