From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2841 invoked by alias); 6 Jan 2009 04:59:22 -0000 Received: (qmail 2831 invoked by uid 22791); 6 Jan 2009 04:59:21 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 06 Jan 2009 04:59:17 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id F24692A961F; Mon, 5 Jan 2009 23:59:15 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MLrpwFFXg9rQ; Mon, 5 Jan 2009 23:59:15 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 238AA2A960A; Mon, 5 Jan 2009 23:59:15 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 25567E7ACD; Tue, 6 Jan 2009 08:59:08 +0400 (RET) Date: Tue, 06 Jan 2009 04:59:00 -0000 From: Joel Brobecker To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: Re: [commit] Start of New Year Procedure applied... Message-ID: <20090106045908.GD3664@adacore.com> References: <20090103060621.GW16483@adacore.com> <200901051718.31702.pedro@codesourcery.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline In-Reply-To: <200901051718.31702.pedro@codesourcery.com> User-Agent: Mutt/1.4.2.2i Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-01/txt/msg00042.txt.bz2 --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 621 > I think the gdbserver ones should be updated as well: > > $ grep "\"Copyright " * -rn > gdbserver/server.c:1258: "Copyright (C) 2007 Free Software Foundation, Inc.\n" > gdbserver/gdbreplay.c:398: "Copyright (C) 2008 Free Software Foundation, Inc.\n" > top.c:1125: fprintf_filtered (stream, "Copyright (C) 2009 Free Software Foundation, Inc.\n"); Right you are. Fixed thusly: 2009-01-06 Joel Brobecker * gdbreplay.c (gdbreplay_version): Update copyright year. * server.c (gdbserver_version): Likewise. A patch to gdbint.texinfo is on the way... -- Joel --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="copyright.diff" Content-length: 1303 Index: gdbreplay.c =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/gdbreplay.c,v retrieving revision 1.19 diff -u -p -r1.19 gdbreplay.c --- gdbreplay.c 3 Jan 2009 05:57:57 -0000 1.19 +++ gdbreplay.c 6 Jan 2009 04:47:13 -0000 @@ -395,7 +395,7 @@ static void gdbreplay_version (void) { printf ("GNU gdbreplay %s%s\n" - "Copyright (C) 2008 Free Software Foundation, Inc.\n" + "Copyright (C) 2009 Free Software Foundation, Inc.\n" "gdbreplay is free software, covered by the GNU General Public License.\n" "This gdbreplay was configured as \"%s\"\n", PKGVERSION, version, host_name); Index: server.c =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/server.c,v retrieving revision 1.83 diff -u -p -r1.83 server.c --- server.c 3 Jan 2009 05:57:57 -0000 1.83 +++ server.c 6 Jan 2009 04:47:14 -0000 @@ -1255,7 +1255,7 @@ static void gdbserver_version (void) { printf ("GNU gdbserver %s%s\n" - "Copyright (C) 2007 Free Software Foundation, Inc.\n" + "Copyright (C) 2009 Free Software Foundation, Inc.\n" "gdbserver is free software, covered by the GNU General Public License.\n" "This gdbserver was configured as \"%s\"\n", PKGVERSION, version, host_name); --V0207lvV8h4k8FAm--