On 2019-06-14 13:37:47 [+0200], John Kacur wrote: > Add License Information to ssdd > Signed-off-by: John Kacur <jkacur@xxxxxxxxxx> > --- > src/ssdd/ssdd.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/src/ssdd/ssdd.c b/src/ssdd/ssdd.c > index 4e293586526e..2c3a779be9f1 100644 > --- a/src/ssdd/ssdd.c > +++ b/src/ssdd/ssdd.c > @@ -15,6 +15,13 @@ > * > * The tracer waits on each PTRACE_SINGLESTEP with a waitpid(2) > * and checks that waitpid's return values for correctness. > + * > + * This program was originally written by > + * Joe Korty <joe.korty@xxxxxxxxxxxxxxxxx> > + * This program is free software; you can redistribute it and / or modify > + * it under the terms of the GNU General Public License Version 2 > + * of the licence, or (at your option) any later version > + * see COPYING for more information SPDX tags is not something that you have in rt-tests, right? Because a standard tag would be kind of better than having yet another unique version of text saying that it is GPLv2-or-later. So you could reduce this to two lines: - // SPDX-License-Identifier: GPL-2.0-or-later top - Author: Joe Korty <joe.korty@xxxxxxxxxxxxxxxxx> Somewhere at top where the comment starts. > */ > #include <stdio.h> > #include <stdlib.h> Sebastian