From: hniksic Date: Fri, 31 Mar 2000 14:05:53 +0000 (-0800) Subject: [svn] Fix indentation. X-Git-Tag: v1.13~2499 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=dee64b0b16e9923fd23296dd5969ffb846fa2af4 [svn] Fix indentation. --- diff --git a/src/host.c b/src/host.c index f741cdc7..1b6abf35 100644 --- a/src/host.c +++ b/src/host.c @@ -395,7 +395,7 @@ sufmatch (const char **list, const char *what) for (i = 0; list[i]; i++) { for (j = strlen (list[i]), k = lw; j >= 0 && k >= 0; j--, k--) - if (tolower (list[i][j]) != tolower (what[k])) + if (TOLOWER (list[i][j]) != TOLOWER (what[k])) break; /* The domain must be first to reach to beginning. */ if (j == -1)