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",
Created attachment 3158 [details] Update copyright in options.c
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.