]> sjero.net Git - wget/blobdiff - src/recur.c
[svn] Indentation change.
[wget] / src / recur.c
index 7f2b55497f13a31868745559625524651fa4ae83..a77ff39131b0c9a8131a9ecb4be6169e22fa31d5 100644 (file)
@@ -448,7 +448,7 @@ download_child_p (const struct urlpos *upos, struct url *parent, int depth,
   /* 1. Schemes other than HTTP are normally not recursed into. */
   if (u->scheme != SCHEME_HTTP
 #ifdef HAVE_SSL
-               && u->scheme != SCHEME_HTTPS
+      && u->scheme != SCHEME_HTTPS
 #endif
       && !(u->scheme == SCHEME_FTP && opt.follow_ftp))
     {
@@ -460,9 +460,9 @@ download_child_p (const struct urlpos *upos, struct url *parent, int depth,
      out.  */
   if (u->scheme == SCHEME_HTTP
 #ifdef HAVE_SSL
-                 || u->scheme == SCHEME_HTTPS
+      || u->scheme == SCHEME_HTTPS
 #endif
-        )
+      )
     if (opt.relative_only && !upos->link_relative_p)
       {
        DEBUGP (("It doesn't really look like a relative link.\n"));
@@ -514,8 +514,8 @@ download_child_p (const struct urlpos *upos, struct url *parent, int depth,
      That is, unless we've exhausted the recursion depth anyway.  */
   if (u->file[0] != '\0'
       && !(has_html_suffix_p (u->file)
-          && depth < opt.reclevel - 1
-          && depth != INFINITE_RECURSION))
+          && depth != INFINITE_RECURSION
+          && depth < opt.reclevel - 1))
     {
       if (!acceptable (u->file))
        {
@@ -535,12 +535,13 @@ download_child_p (const struct urlpos *upos, struct url *parent, int depth,
       }
 
   /* 8. */
-  if (opt.use_robots && (u->scheme == SCHEME_HTTP
+  if (opt.use_robots
+      && (u->scheme == SCHEME_HTTP
 #ifdef HAVE_SSL
-                         || u->scheme == SCHEME_HTTPS
+         || u->scheme == SCHEME_HTTPS
 #endif
-                         )
-        )
+         )
+      )
     {
       struct robot_specs *specs = res_get_specs (u->host, u->port);
       if (!specs)