From f54cd101d750cb31f54081a41d6cb880a9199dba Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 1 Jan 2014 16:41:01 +0100 Subject: [PATCH] Update copyright year. --- README | 2 +- configure.ac | 2 +- src/coloredstderr.c | 2 +- src/compiler.h | 2 +- src/constants.h | 2 +- src/debug.h | 2 +- src/hookmacros.h | 2 +- src/ldpreload.h | 2 +- src/trackfds.h | 2 +- tests/example.c | 2 +- tests/example.h | 2 +- tests/example_err.c | 2 +- tests/example_error.c | 2 +- tests/example_exec.c | 2 +- tests/example_redirects.sh | 2 +- tests/example_simple.sh | 2 +- tests/example_stdio.c | 2 +- tests/example_vfork.c | 2 +- tests/lib.sh | 2 +- tests/test_environment.sh | 2 +- tests/test_err.sh | 2 +- tests/test_error.sh | 2 +- tests/test_example.sh | 2 +- tests/test_exec.sh | 2 +- tests/test_noforce.sh | 2 +- tests/test_redirects.sh | 2 +- tests/test_simple.sh | 2 +- tests/test_stdio.sh | 2 +- tests/test_vfork.sh | 2 +- 29 files changed, 29 insertions(+), 29 deletions(-) diff --git a/README b/README index 7320731..d7ef1de 100644 --- a/README +++ b/README @@ -182,7 +182,7 @@ LICENSE coloredstderr is licensed under GPL version 3 or later. -Copyright (C) 2013 Simon Ruderich +Copyright (C) 2013-2014 Simon Ruderich This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/configure.ac b/configure.ac index 4b513c3..e8d66a4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -dnl Copyright (C) 2013 Simon Ruderich +dnl Copyright (C) 2013-2014 Simon Ruderich dnl dnl This program is free software: you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by diff --git a/src/coloredstderr.c b/src/coloredstderr.c index 2970a1e..c36e7d7 100644 --- a/src/coloredstderr.c +++ b/src/coloredstderr.c @@ -2,7 +2,7 @@ * Hook output functions (like printf(3)) with LD_PRELOAD to color stderr (or * other file descriptors). * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/compiler.h b/src/compiler.h index d1c12dc..bf0e5ae 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -1,7 +1,7 @@ /* * Compiler specific macros. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/constants.h b/src/constants.h index c358831..08a67db 100644 --- a/src/constants.h +++ b/src/constants.h @@ -1,7 +1,7 @@ /* * Global constants and defines. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/debug.h b/src/debug.h index 911a440..3c6553e 100644 --- a/src/debug.h +++ b/src/debug.h @@ -1,7 +1,7 @@ /* * Debug functions. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/hookmacros.h b/src/hookmacros.h index b7df786..3fff1ba 100644 --- a/src/hookmacros.h +++ b/src/hookmacros.h @@ -1,7 +1,7 @@ /* * Macros to hook functions. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ldpreload.h b/src/ldpreload.h index 792679b..c3942a5 100644 --- a/src/ldpreload.h +++ b/src/ldpreload.h @@ -2,7 +2,7 @@ * Helper header for LD_PRELOAD related headers macros. Must be loaded _first_ * (for RTLD_NEXT)! * - * Copyright (C) 2012-2013 Simon Ruderich + * Copyright (C) 2012-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/trackfds.h b/src/trackfds.h index d45f128..c755086 100644 --- a/src/trackfds.h +++ b/src/trackfds.h @@ -1,7 +1,7 @@ /* * Utility functions to track file descriptors. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/example.c b/tests/example.c index 54f6c95..75ab5af 100644 --- a/tests/example.c +++ b/tests/example.c @@ -1,7 +1,7 @@ /* * Test basic features of coloredstderr. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/example.h b/tests/example.h index 7c27c5a..be1659c 100644 --- a/tests/example.h +++ b/tests/example.h @@ -1,7 +1,7 @@ /* * Helper functions/macros for example files. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/example_err.c b/tests/example_err.c index 90072c4..aee2814 100644 --- a/tests/example_err.c +++ b/tests/example_err.c @@ -1,7 +1,7 @@ /* * Test err(), verr(), ... Non-standard, BSD only. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/example_error.c b/tests/example_error.c index 0d979db..6713bcc 100644 --- a/tests/example_error.c +++ b/tests/example_error.c @@ -1,7 +1,7 @@ /* * Test error() and error_at_line(). Non-standard, GNU only. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/example_exec.c b/tests/example_exec.c index 415da45..25a5a66 100644 --- a/tests/example_exec.c +++ b/tests/example_exec.c @@ -1,7 +1,7 @@ /* * Test execve() and exec*() functions. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/example_redirects.sh b/tests/example_redirects.sh index 8ac150d..65d912f 100755 --- a/tests/example_redirects.sh +++ b/tests/example_redirects.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/example_simple.sh b/tests/example_simple.sh index 523fe6d..783be36 100755 --- a/tests/example_simple.sh +++ b/tests/example_simple.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/example_stdio.c b/tests/example_stdio.c index 028b3f7..7135396 100644 --- a/tests/example_stdio.c +++ b/tests/example_stdio.c @@ -1,7 +1,7 @@ /* * Test all hooked stdio.h functions. * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/example_vfork.c b/tests/example_vfork.c index 8c4aec9..bdb3178 100644 --- a/tests/example_vfork.c +++ b/tests/example_vfork.c @@ -1,7 +1,7 @@ /* * Test issues with vfork(). * - * Copyright (C) 2013 Simon Ruderich + * Copyright (C) 2013-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/lib.sh b/tests/lib.sh index 7face08..90a7db3 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -1,6 +1,6 @@ # Library for the test suite. -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_environment.sh b/tests/test_environment.sh index d402472..eb1c8e4 100755 --- a/tests/test_environment.sh +++ b/tests/test_environment.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_err.sh b/tests/test_err.sh index fa16ebb..5064b26 100755 --- a/tests/test_err.sh +++ b/tests/test_err.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_error.sh b/tests/test_error.sh index f01c11b..7955793 100755 --- a/tests/test_error.sh +++ b/tests/test_error.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_example.sh b/tests/test_example.sh index 5a1470f..bb0ee44 100755 --- a/tests/test_example.sh +++ b/tests/test_example.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_exec.sh b/tests/test_exec.sh index 7f8e85e..2ef2c32 100755 --- a/tests/test_exec.sh +++ b/tests/test_exec.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_noforce.sh b/tests/test_noforce.sh index 00a9b2d..c287cd3 100755 --- a/tests/test_noforce.sh +++ b/tests/test_noforce.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_redirects.sh b/tests/test_redirects.sh index 1737566..5f171f1 100755 --- a/tests/test_redirects.sh +++ b/tests/test_redirects.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_simple.sh b/tests/test_simple.sh index b78c88d..6d9b36d 100755 --- a/tests/test_simple.sh +++ b/tests/test_simple.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_stdio.sh b/tests/test_stdio.sh index 5052698..10f6924 100755 --- a/tests/test_stdio.sh +++ b/tests/test_stdio.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_vfork.sh b/tests/test_vfork.sh index 7e00d44..9b3337f 100755 --- a/tests/test_vfork.sh +++ b/tests/test_vfork.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -- 2.43.2