Bug 5301 - rsync 3.0.0 copyright dates not updated to 2008
Summary: rsync 3.0.0 copyright dates not updated to 2008
Status: CLOSED FIXED
Alias: None
Product: rsync
Classification: Unclassified
Component: core (show other bugs)
Version: 3.0.1
Hardware: All All
: P3 trivial (vote)
Target Milestone: ---
Assignee: Wayne Davison
QA Contact: Rsync QA Contact
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-03-03 09:49 UTC by Michael Bracewell
Modified: 2008-07-26 10:48 UTC (History)
0 users

See Also:


Attachments
Update copyright in options.c (598 bytes, patch)
2008-03-03 09:57 UTC, Michael Bracewell
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Bracewell 2008-03-03 09:49:26 UTC
rsync --version:

rsync  version 3.0.0  protocol version 30
Copyright (C) 1996-2007 by Andrew Tridgell, Wayne Davison, and others.
Web site: http://rsync.samba.org/
...

Just noticed that the copyright date range does not yet include 2008 :)

Trivial patch:
--- options.c.orig      2008-02-18 19:48:20.000000000 -0500
+++ options.c   2008-03-03 10:19:19.000000000 -0500
@@ -259,7 +259,7 @@
 
        rprintf(f, "%s  version %s  protocol version %d%s\n",
                RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION, subprotocol);
-       rprintf(f, "Copyright (C) 1996-2007 by Andrew Tridgell, Wayne Davison, and others.\n");
+       rprintf(f, "Copyright (C) 1996-2008 by Andrew Tridgell, Wayne Davison, and others.\n");
        rprintf(f, "Web site: http://rsync.samba.org/\n");
        rprintf(f, "Capabilities:\n");
        rprintf(f, "    %d-bit files, %d-bit inums, %d-bit timestamps, %d-bit long ints,\n",
Comment 1 Michael Bracewell 2008-03-03 09:57:01 UTC
Created attachment 3158 [details]
Update copyright in options.c
Comment 2 Wayne Davison 2008-03-04 23:51:08 UTC
Thanks for pointing that out.  I updated the comment headers, but not the --version output.

I've updated my release script to check for such a situation so it won't happen again.