]> sjero.net Git - wget/blobdiff - src/main.c
[svn] Better document html-parse macros.
[wget] / src / main.c
index 6b0c6d193498719f40608949fedb9f257a82a079..3fe47de026a8c53741ddfef9af76eebe25deffb2 100644 (file)
@@ -515,13 +515,13 @@ hpVqvdkKsxmNWrHSLcFbEY:G:g:T:U:O:l:n:i:o:a:t:D:A:R:P:B:e:Q:X:I:w:C:",
        case 'V':
          printf ("GNU Wget %s\n\n", version_string);
          printf ("%s", _("\
-Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.\n"));
+Copyright (C) 2003 Free Software Foundation, Inc.\n"));
          printf ("%s", _("\
 This program is distributed in the hope that it will be useful,\n\
 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
 GNU General Public License for more details.\n"));
-         printf (_("\nOriginally written by Hrvoje Niksic <hniksic@arsdigita.com>.\n"));
+         printf (_("\nOriginally written by Hrvoje Niksic <hniksic@xemacs.org>.\n"));
          exit (0);
          break;
        case 'v':
@@ -804,7 +804,7 @@ Can't timestamp and not clobber old files at the same time.\n"));
     set_progress_implementation (opt.progress_type);
 
   /* Allocate basic pointer.  */
-  url = ALLOCA_ARRAY (char *, nurl + 1);
+  url = (char **) alloca ((nurl + 1) * sizeof (char *));
   /* Fill in the arguments.  */
   for (i = 0; i < nurl; i++, optind++)
     {