summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2020-01-01 00:21:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2020-01-01 00:21:22 +0000
commit5f72f9800b250410cad3abfeeb09469ef12b2438 (patch)
treed8bdee0a70ac3cbb05c07a5da9439be38990578d
parentd614a7539657941a9201c236b2f15afac18e1213 (diff)
downloadglibc-5f72f9800b250410cad3abfeeb09469ef12b2438.tar.gz
Update copyright dates not handled by scripts/update-copyrights.
I've updated copyright dates in glibc for 2020. This is the patch for the changes not generated by scripts/update-copyrights and subsequent build / regeneration of generated files. As well as the usual annual updates, mainly dates in --version output (minus libc.texinfo which previously had to be handled manually but is now successfully updated by update-copyrights), there is a fix to sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h where a typo in the copyright notice meant it failed to be updated automatically. Please remember to include 2020 in the dates for any new files added in future (which means updating any existing uncommitted patches you have that add new files to use the new copyright dates in them).
-rw-r--r--NEWS2
-rw-r--r--catgets/gencat.c2
-rw-r--r--csu/version.c2
-rwxr-xr-xdebug/catchsegv.sh2
-rw-r--r--debug/pcprofiledump.c2
-rwxr-xr-xdebug/xtrace.sh2
-rw-r--r--elf/ldconfig.c2
-rw-r--r--elf/ldd.bash.in2
-rw-r--r--elf/pldd.c2
-rwxr-xr-xelf/sotruss.sh2
-rw-r--r--elf/sprof.c2
-rw-r--r--iconv/iconv_prog.c2
-rw-r--r--iconv/iconvconfig.c2
-rw-r--r--locale/programs/locale.c2
-rw-r--r--locale/programs/localedef.c2
-rw-r--r--login/programs/pt_chown.c2
-rwxr-xr-xmalloc/memusage.sh2
-rw-r--r--malloc/memusagestat.c2
-rw-r--r--malloc/mtrace.pl2
-rw-r--r--nptl/version.c2
-rw-r--r--nscd/nscd.c2
-rw-r--r--nss/getent.c2
-rw-r--r--nss/makedb.c2
-rw-r--r--posix/getconf.c2
-rwxr-xr-xscripts/test-installation.pl2
-rw-r--r--sysdeps/unix/sysv/linux/lddlibc4.c2
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h2
27 files changed, 27 insertions, 27 deletions
diff --git a/NEWS b/NEWS
index c0bbd39ab3..7249fcad48 100644
--- a/NEWS
+++ b/NEWS
@@ -5733,7 +5733,7 @@ Version 1.04
----------------------------------------------------------------------
Copyright information:
-Copyright (C) 1992-2019 Free Software Foundation, Inc.
+Copyright (C) 1992-2020 Free Software Foundation, Inc.
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
diff --git a/catgets/gencat.c b/catgets/gencat.c
index 8f1ea4c803..f8bc7adbae 100644
--- a/catgets/gencat.c
+++ b/catgets/gencat.c
@@ -246,7 +246,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/csu/version.c b/csu/version.c
index cc677cbf77..57b49dfd8a 100644
--- a/csu/version.c
+++ b/csu/version.c
@@ -25,7 +25,7 @@ static const char __libc_version[] = VERSION;
static const char banner[] =
"GNU C Library "PKGVERSION RELEASE" release version "VERSION".\n\
-Copyright (C) 2019 Free Software Foundation, Inc.\n\
+Copyright (C) 2020 Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions.\n\
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
PARTICULAR PURPOSE.\n\
diff --git a/debug/catchsegv.sh b/debug/catchsegv.sh
index 0e78f7e5c0..dcf5948400 100755
--- a/debug/catchsegv.sh
+++ b/debug/catchsegv.sh
@@ -40,7 +40,7 @@ EOF
;;
--v | --ve | --ver | --vers | --versi | --versio | --version)
echo 'catchsegv @PKGVERSION@@VERSION@'
- echo 'Copyright (C) 2019 Free Software Foundation, Inc.
+ echo 'Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Ulrich Drepper.'
diff --git a/debug/pcprofiledump.c b/debug/pcprofiledump.c
index deefcbb2ea..0c9c6c1331 100644
--- a/debug/pcprofiledump.c
+++ b/debug/pcprofiledump.c
@@ -226,6 +226,6 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/debug/xtrace.sh b/debug/xtrace.sh
index a22badf44d..e52bf35815 100755
--- a/debug/xtrace.sh
+++ b/debug/xtrace.sh
@@ -64,7 +64,7 @@ do_version() {
printf $"Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-" "2019"
+" "2020"
printf $"Written by %s.
" "Ulrich Drepper"
exit 0
diff --git a/elf/ldconfig.c b/elf/ldconfig.c
index 8b3e6a66bc..681ed78496 100644
--- a/elf/ldconfig.c
+++ b/elf/ldconfig.c
@@ -325,7 +325,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"),
"Andreas Jaeger");
}
diff --git a/elf/ldd.bash.in b/elf/ldd.bash.in
index 95c6605390..467cbf44e9 100644
--- a/elf/ldd.bash.in
+++ b/elf/ldd.bash.in
@@ -38,7 +38,7 @@ while test $# -gt 0; do
printf $"Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-" "2019"
+" "2020"
printf $"Written by %s and %s.
" "Roland McGrath" "Ulrich Drepper"
exit 0
diff --git a/elf/pldd.c b/elf/pldd.c
index 5b1ccd54dd..dcf621d35d 100644
--- a/elf/pldd.c
+++ b/elf/pldd.c
@@ -264,7 +264,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/elf/sotruss.sh b/elf/sotruss.sh
index 16cf24d297..bfce293214 100755
--- a/elf/sotruss.sh
+++ b/elf/sotruss.sh
@@ -75,7 +75,7 @@ while test $# -gt 0; do
printf $"Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-" "2019"
+" "2020"
printf $"Written by %s.\n" "Ulrich Drepper"
exit 0
;;
diff --git a/elf/sprof.c b/elf/sprof.c
index 21521a3e66..364d7069ec 100644
--- a/elf/sprof.c
+++ b/elf/sprof.c
@@ -391,7 +391,7 @@ Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
"),
- "2019");
+ "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c
index 19f4487ba5..9709e4a701 100644
--- a/iconv/iconv_prog.c
+++ b/iconv/iconv_prog.c
@@ -423,7 +423,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/iconv/iconvconfig.c b/iconv/iconvconfig.c
index da6855fd6d..18c1ef37e3 100644
--- a/iconv/iconvconfig.c
+++ b/iconv/iconvconfig.c
@@ -397,7 +397,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/locale/programs/locale.c b/locale/programs/locale.c
index 995f9f386b..e2e309c2a1 100644
--- a/locale/programs/locale.c
+++ b/locale/programs/locale.c
@@ -294,7 +294,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c
index 7e4e2fb94d..dbbb0145c0 100644
--- a/locale/programs/localedef.c
+++ b/locale/programs/localedef.c
@@ -464,7 +464,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/login/programs/pt_chown.c b/login/programs/pt_chown.c
index 20c68f1b47..b7df9c55ef 100644
--- a/login/programs/pt_chown.c
+++ b/login/programs/pt_chown.c
@@ -64,7 +64,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
}
static char *
diff --git a/malloc/memusage.sh b/malloc/memusage.sh
index 08b0ad0e9e..14fbd5da01 100755
--- a/malloc/memusage.sh
+++ b/malloc/memusage.sh
@@ -71,7 +71,7 @@ do_version() {
printf $"Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-" "2019"
+" "2020"
printf $"Written by %s.
" "Ulrich Drepper"
exit 0
diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c
index ebf15b62a2..9f28d2afa5 100644
--- a/malloc/memusagestat.c
+++ b/malloc/memusagestat.c
@@ -582,6 +582,6 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/malloc/mtrace.pl b/malloc/mtrace.pl
index ef44a3994e..40389ac294 100644
--- a/malloc/mtrace.pl
+++ b/malloc/mtrace.pl
@@ -45,7 +45,7 @@ arglist: while (@ARGV) {
$ARGV[0] eq "--vers" || $ARGV[0] eq "--versi" ||
$ARGV[0] eq "--versio" || $ARGV[0] eq "--version") {
print "mtrace $PKGVERSION$VERSION\n";
- print "Copyright (C) 2019 Free Software Foundation, Inc.\n";
+ print "Copyright (C) 2020 Free Software Foundation, Inc.\n";
print "This is free software; see the source for copying conditions. There is NO\n";
print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
print "Written by Ulrich Drepper <drepper\@gnu.org>\n";
diff --git a/nptl/version.c b/nptl/version.c
index 403d7c10ca..ce10b9cadc 100644
--- a/nptl/version.c
+++ b/nptl/version.c
@@ -23,7 +23,7 @@
static const char banner[] =
"Native POSIX Threads Library\n\
-Copyright (C) 2019 Free Software Foundation, Inc.\n\
+Copyright (C) 2020 Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions.\n\
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
PARTICULAR PURPOSE.\n"
diff --git a/nscd/nscd.c b/nscd/nscd.c
index fa3bf07e34..310111ae6d 100644
--- a/nscd/nscd.c
+++ b/nscd/nscd.c
@@ -510,7 +510,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"),
"Thorsten Kukuk and Ulrich Drepper");
}
diff --git a/nss/getent.c b/nss/getent.c
index 1b1af685f4..897f4454ff 100644
--- a/nss/getent.c
+++ b/nss/getent.c
@@ -89,7 +89,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Thorsten Kukuk");
}
diff --git a/nss/makedb.c b/nss/makedb.c
index 7e1ff2901b..8e389a1683 100644
--- a/nss/makedb.c
+++ b/nss/makedb.c
@@ -386,7 +386,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
fprintf (stream, gettext ("Written by %s.\n"), "Ulrich Drepper");
}
diff --git a/posix/getconf.c b/posix/getconf.c
index 0537cc8918..a8ba876c14 100644
--- a/posix/getconf.c
+++ b/posix/getconf.c
@@ -486,7 +486,7 @@ main (int argc, char *argv[])
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
printf (gettext ("Written by %s.\n"), "Roland McGrath");
return 0;
}
diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
index ec1771e02f..d16e321b3a 100755
--- a/scripts/test-installation.pl
+++ b/scripts/test-installation.pl
@@ -59,7 +59,7 @@ arglist: while (@ARGV) {
$ARGV[0] eq "--vers" || $ARGV[0] eq "--versi" ||
$ARGV[0] eq "--versio" || $ARGV[0] eq "--version") {
print "test-installation (GNU $PACKAGE)\n";
- print "Copyright (C) 2019 Free Software Foundation, Inc.\n";
+ print "Copyright (C) 2020 Free Software Foundation, Inc.\n";
print "This is free software; see the source for copying conditions. There is NO\n";
print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
print "Written by Andreas Jaeger <aj\@arthur.rhein-neckar.de>\n";
diff --git a/sysdeps/unix/sysv/linux/lddlibc4.c b/sysdeps/unix/sysv/linux/lddlibc4.c
index 459c9e942c..128ebf2b93 100644
--- a/sysdeps/unix/sysv/linux/lddlibc4.c
+++ b/sysdeps/unix/sysv/linux/lddlibc4.c
@@ -69,7 +69,7 @@ main (int argc, char *argv[])
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2019");
+"), "2020");
return 0;
}
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h b/sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h
index 4334130b21..2832a14cce 100644
--- a/sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h
+++ b/sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h
@@ -1,5 +1,5 @@
/* termios local mode definitions. Linux/powerpc version.
- Copyright (C) 2019i Free Software Foundation, Inc.
+ Copyright (C) 2019-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or