[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-wget] --version copyright year stale
From: |
Giuseppe Scrivano |
Subject: |
Re: [Bug-wget] --version copyright year stale |
Date: |
Mon, 19 Sep 2011 17:28:42 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) |
address@hidden (Karl Berry) writes:
> Hi Giuseppe,
>
> The copyright year in the wget --version output should be 2011, not 2009.
> As seen in 1.13.4.
thanks to have reported it, this patch fixes it:
=== modified file 'src/main.c'
--- src/main.c 2011-09-06 13:53:39 +0000
+++ src/main.c 2011-09-19 15:26:41 +0000
@@ -884,7 +884,7 @@
/* TRANSLATORS: When available, an actual copyright character
(cirle-c) should be used in preference to "(C)". */
if (fputs (_("\
-Copyright (C) 2009 Free Software Foundation, Inc.\n"), stdout) < 0)
+Copyright (C) 2011 Free Software Foundation, Inc.\n"), stdout) < 0)
exit (3);
if (fputs (_("\
License GPLv3+: GNU GPL version 3 or later\n\
Cheers,
Giuseppe