From: Micah Cowan Date: Fri, 9 Oct 2009 09:23:26 +0000 (-0700) Subject: Remove misleading comment. X-Git-Tag: v1.13~211 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=a454495722d19f470b5957b6c26c135a8ca1f7e2 Remove misleading comment. --- diff --git a/src/main.c b/src/main.c index ad39a53b..fe4cac7a 100644 --- a/src/main.c +++ b/src/main.c @@ -786,9 +786,7 @@ print_version (void) int i; printf (_("GNU Wget %s built on %s.\n\n"), version_string, OS_TYPE); - /* compiled_features is a char*[]. We limit the characters per - line to MAX_CHARS_PER_LINE and prefix each line with a constant - number of spaces for proper alignment. */ + for (i = 0; compiled_features[i] != NULL; ) { int line_length = MAX_CHARS_PER_LINE; @@ -801,6 +799,7 @@ print_version (void) printf ("\n"); } printf ("\n"); + /* Handle the case when $WGETRC is unset and $HOME/.wgetrc is absent. */ printf ("%s\n", wgetrc_title);