From 25d4acc24bb86b3adb0e34f28c31298c234fb03d Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Fri, 16 Aug 2013 12:53:34 -0700 Subject: [PATCH] Add current year to "Copyright" comments --- README | 2 +- src/lib/cd.c | 2 +- src/lib/cd.h | 2 +- src/lib/cdtext.c | 2 +- src/lib/cdtext.h | 2 +- src/lib/cue.h | 2 +- src/lib/cue_parse.y | 2 +- src/lib/cue_parse_prefix.h | 2 +- src/lib/cue_print.c | 2 +- src/lib/cue_scan.l | 2 +- src/lib/cuefile.c | 2 +- src/lib/cuefile.h | 2 +- src/lib/time.c | 2 +- src/lib/time.h | 2 +- src/lib/toc.h | 2 +- src/lib/toc_parse.y | 2 +- src/lib/toc_parse_prefix.h | 2 +- src/lib/toc_print.c | 2 +- src/lib/toc_scan.l | 2 +- src/tools/cuebreakpoints.c | 2 +- src/tools/cueconvert.c | 2 +- src/tools/cueprint.c | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README b/README index f774019..c6dbaa1 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ cuetools - cue and toc file parsers and utilities -Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen +Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen cuetools is a set of utilities for working with Cue Sheet (cue) and Table of Contents (toc) files. diff --git a/src/lib/cd.c b/src/lib/cd.c index 516af09..dc69079 100644 --- a/src/lib/cd.c +++ b/src/lib/cd.c @@ -1,7 +1,7 @@ /* * cd.c -- cd functions * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cd.h b/src/lib/cd.h index a052fa9..a4ae781 100644 --- a/src/lib/cd.h +++ b/src/lib/cd.h @@ -1,7 +1,7 @@ /* * cd.h -- cd structure * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cdtext.c b/src/lib/cdtext.c index 61c9330..9b512fc 100644 --- a/src/lib/cdtext.c +++ b/src/lib/cdtext.c @@ -1,7 +1,7 @@ /* * cdtext.c -- CD-TEXT data structure and functions * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cdtext.h b/src/lib/cdtext.h index 1dab39b..0c485b3 100644 --- a/src/lib/cdtext.h +++ b/src/lib/cdtext.h @@ -1,7 +1,7 @@ /* * cdtext.h -- CD-TEXT declarations * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cue.h b/src/lib/cue.h index 625a90d..2328fbd 100644 --- a/src/lib/cue.h +++ b/src/lib/cue.h @@ -1,7 +1,7 @@ /* * cue.h -- cue function declarations * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cue_parse.y b/src/lib/cue_parse.y index bea33f8..0be4d4d 100644 --- a/src/lib/cue_parse.y +++ b/src/lib/cue_parse.y @@ -2,7 +2,7 @@ /* * cue_parse.y -- parser for cue files * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cue_parse_prefix.h b/src/lib/cue_parse_prefix.h index 3a315d0..e4a843b 100644 --- a/src/lib/cue_parse_prefix.h +++ b/src/lib/cue_parse_prefix.h @@ -2,7 +2,7 @@ * cue_parse_prefix.h -- yacc symbol redefinitions (for cue parser) * * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cue_print.c b/src/lib/cue_print.c index dc956cc..77a17c0 100644 --- a/src/lib/cue_print.c +++ b/src/lib/cue_print.c @@ -1,7 +1,7 @@ /* * cue_print.y -- print cue file * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cue_scan.l b/src/lib/cue_scan.l index 82775e6..979503b 100644 --- a/src/lib/cue_scan.l +++ b/src/lib/cue_scan.l @@ -2,7 +2,7 @@ /* * cue_scan.l -- lexer for cue files * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cuefile.c b/src/lib/cuefile.c index 3975c72..dbc70a9 100644 --- a/src/lib/cuefile.c +++ b/src/lib/cuefile.c @@ -1,7 +1,7 @@ /* * cuefile.c -- cue/toc functions * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/cuefile.h b/src/lib/cuefile.h index faa0b52..b90a09f 100644 --- a/src/lib/cuefile.h +++ b/src/lib/cuefile.h @@ -1,7 +1,7 @@ /* * cuefile.h -- cue/toc public declarations * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/time.c b/src/lib/time.c index d9b8845..15ddbfa 100644 --- a/src/lib/time.c +++ b/src/lib/time.c @@ -1,7 +1,7 @@ /* * time.c -- time functions * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/time.h b/src/lib/time.h index 5ecb2c4..bd5f153 100644 --- a/src/lib/time.h +++ b/src/lib/time.h @@ -1,7 +1,7 @@ /* * time.h -- time declarations * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/toc.h b/src/lib/toc.h index 6080df9..78b44bd 100644 --- a/src/lib/toc.h +++ b/src/lib/toc.h @@ -1,7 +1,7 @@ /* * toc.h -- toc function declarations * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/toc_parse.y b/src/lib/toc_parse.y index 95a0b3a..4100d36 100644 --- a/src/lib/toc_parse.y +++ b/src/lib/toc_parse.y @@ -2,7 +2,7 @@ /* * toc_parse.y -- parser for toc files * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/toc_parse_prefix.h b/src/lib/toc_parse_prefix.h index 52f10fa..9de72fa 100644 --- a/src/lib/toc_parse_prefix.h +++ b/src/lib/toc_parse_prefix.h @@ -1,7 +1,7 @@ /* * toc_parse_prefix.h -- yacc symbol redefinitions (for toc parser) * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/toc_print.c b/src/lib/toc_print.c index 0c81be1..29d0307 100644 --- a/src/lib/toc_print.c +++ b/src/lib/toc_print.c @@ -1,7 +1,7 @@ /* * toc_print.c -- print toc file * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/lib/toc_scan.l b/src/lib/toc_scan.l index e233899..f56ee0e 100644 --- a/src/lib/toc_scan.l +++ b/src/lib/toc_scan.l @@ -2,7 +2,7 @@ /* * toc_scan.l -- lexer for toc files * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/tools/cuebreakpoints.c b/src/tools/cuebreakpoints.c index 7cbcb70..4f56049 100644 --- a/src/tools/cuebreakpoints.c +++ b/src/tools/cuebreakpoints.c @@ -1,7 +1,7 @@ /* * cuebreakpoints.c -- print track break points * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/tools/cueconvert.c b/src/tools/cueconvert.c index c5a91ae..1eb90ff 100644 --- a/src/tools/cueconvert.c +++ b/src/tools/cueconvert.c @@ -1,7 +1,7 @@ /* * cueconvert.c -- convert between cue/toc formats * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */ diff --git a/src/tools/cueprint.c b/src/tools/cueprint.c index 754e13d..8b6b4de 100644 --- a/src/tools/cueprint.c +++ b/src/tools/cueprint.c @@ -1,7 +1,7 @@ /* * cueprint.c -- print cd information based on a template * - * Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen + * Copyright (C) 2004, 2005, 2006, 2007, 2013 Svend Sorensen * For license terms, see the file COPYING in this distribution. */