From: Eugene Syromyatnikov Date: Wed, 24 May 2017 20:01:05 +0000 (+0200) Subject: Unify capitalisation of (c) in copyright notices X-Git-Tag: v4.18~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d86b6bc773e30821b585cc7e10c9ef62c5a158e0;p=strace Unify capitalisation of (c) in copyright notices --- diff --git a/COPYING b/COPYING index 168a7155..a3592086 100644 --- a/COPYING +++ b/COPYING @@ -3,8 +3,8 @@ Copyright (c) 1993 Branko Lankester Copyright (c) 1993 Ulrich Pegelow Copyright (c) 1995, 1996 Michael Elizabeth Chastain Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey -Copyright (C) 1998-2001 Wichert Akkerman -Copyright (C) 2001-2017 The strace developers. +Copyright (c) 1998-2001 Wichert Akkerman +Copyright (c) 2001-2017 The strace developers. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/configure.ac b/configure.ac index 620a33bf..0d4679e1 100644 --- a/configure.ac +++ b/configure.ac @@ -37,7 +37,7 @@ AC_INIT([strace], [strace], [https://strace.io]) m4_define([copyright_year], m4_esyscmd([./copyright-year-gen .year])) -AC_COPYRIGHT([Copyright (C) 1999-]copyright_year[ The strace developers.]) +AC_COPYRIGHT([Copyright (c) 1999-]copyright_year[ The strace developers.]) AC_CONFIG_SRCDIR([strace.c]) AC_CONFIG_AUX_DIR([.]) AC_CONFIG_HEADERS([config.h]) diff --git a/debian/copyright b/debian/copyright index fd355077..e227efdb 100644 --- a/debian/copyright +++ b/debian/copyright @@ -10,7 +10,7 @@ Copyright (c) 1993 Branko Lankester Copyright (c) 1993 Ulrich Pegelow Copyright (c) 1995, 1996 Michael Elizabeth Chastain Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey -Copyright (C) 1998-2003 Wichert Akkerman +Copyright (c) 1998-2003 Wichert Akkerman Copyright (c) 2002-2008 Roland McGrath Copyright (c) 2003-2008 Dmitry V. Levin Copyright (c) 2007-2008 Jan Kratochvil diff --git a/defs.h b/defs.h index fb3a603e..f731fa8c 100644 --- a/defs.h +++ b/defs.h @@ -2,7 +2,7 @@ * Copyright (c) 1991, 1992 Paul Kranenburg * Copyright (c) 1993 Branko Lankester * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey - * Copyright (C) 2001-2017 The strace developers. + * Copyright (c) 2001-2017 The strace developers. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/linux/ptp_clock.h b/linux/ptp_clock.h index 2f92eb66..1a41676c 100644 --- a/linux/ptp_clock.h +++ b/linux/ptp_clock.h @@ -1,7 +1,7 @@ /* * PTP 1588 clock support - user space interface * - * Copyright (C) 2010 OMICRON electronics GmbH + * Copyright (c) 2010 OMICRON electronics GmbH * Copyright (c) 2010-2017 The strace developers. * * This program is free software; you can redistribute it and/or modify diff --git a/linux/ubi-user.h b/linux/ubi-user.h index 7bae56eb..0f5c7756 100644 --- a/linux/ubi-user.h +++ b/linux/ubi-user.h @@ -1,5 +1,5 @@ /* - * Copyright © International Business Machines Corp., 2006 + * Copyright (c) International Business Machines Corp., 2006 * Copyright (c) 2006-2017 The strace developers. * * This program is free software; you can redistribute it and/or modify diff --git a/signal.c b/signal.c index 2c21f906..f3333975 100644 --- a/signal.c +++ b/signal.c @@ -6,7 +6,7 @@ * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation * Linux for s390 port by D.J. Barrow * - * Copyright (C) 2001-2017 The strace developers. + * Copyright (c) 2001-2017 The strace developers. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/strace-graph b/strace-graph index 9056dcea..045f5e48 100755 --- a/strace-graph +++ b/strace-graph @@ -9,7 +9,8 @@ # The script can also handle the output with strace -t, -tt, or -ttt. # It will add elapsed time for each process in that case. -# This script is Copyright (C) 1998 by Richard Braakman . +# Copyright (c) 1998 by Richard Braakman . +# Copyright (c) 1998-2017 The strace developers. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions diff --git a/strace.c b/strace.c index fc165511..99fb571a 100644 --- a/strace.c +++ b/strace.c @@ -191,7 +191,7 @@ static void print_version(void) { printf("%s -- version %s\n" - "Copyright (C) 1991-%s The strace developers <%s>.\n" + "Copyright (c) 1991-%s The strace developers <%s>.\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", PACKAGE_NAME, PACKAGE_VERSION, COPYRIGHT_YEAR, PACKAGE_URL); diff --git a/tests/strace-V.test b/tests/strace-V.test index d5c3ac08..8db13956 100755 --- a/tests/strace-V.test +++ b/tests/strace-V.test @@ -23,7 +23,7 @@ config_year=$(getval COPYRIGHT_YEAR) cat > "$EXP" << __EOF__ $(getval PACKAGE_NAME) -- version $(getval PACKAGE_VERSION) -Copyright (C) 1991-${config_year} The strace developers <$(getval PACKAGE_URL)>. +Copyright (c) 1991-${config_year} The strace developers <$(getval PACKAGE_URL)>. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. __EOF__