From 7e00faaca0207eb6ee6cf109c09cc489d8fb7e3f Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Tue, 30 Jul 2019 06:53:25 +0200 Subject: Add propper copyright headers to all source files Signed-off-by: David Oberhollenzer --- tests/add_by_path.c | 5 +++++ tests/canonicalize_name.c | 5 +++++ tests/crc32.c | 5 +++++ tests/fstree_from_file.c | 5 +++++ tests/fstree_init.c | 5 +++++ tests/fstree_sort.c | 5 +++++ tests/fstree_xattr.c | 5 +++++ tests/gen_inode_table.c | 5 +++++ tests/get_path.c | 5 +++++ tests/mknode_dir.c | 5 +++++ tests/mknode_reg.c | 5 +++++ tests/mknode_simple.c | 5 +++++ tests/mknode_slink.c | 5 +++++ tests/str_table.c | 5 +++++ tests/tar_gnu.c | 5 +++++ tests/tar_pax.c | 5 +++++ tests/tar_sparse_gnu.c | 5 +++++ tests/tar_sparse_gnu1.c | 5 +++++ tests/tar_sparse_gnu2.c | 5 +++++ tests/tar_ustar.c | 5 +++++ tests/tar_xattr_bsd.c | 5 +++++ tests/tar_xattr_schily.c | 5 +++++ 22 files changed, 110 insertions(+) (limited to 'tests') diff --git a/tests/add_by_path.c b/tests/add_by_path.c index e9e2546..610cb79 100644 --- a/tests/add_by_path.c +++ b/tests/add_by_path.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * add_by_path.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/canonicalize_name.c b/tests/canonicalize_name.c index 08c6d84..64ca766 100644 --- a/tests/canonicalize_name.c +++ b/tests/canonicalize_name.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * canonicalize_name.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/crc32.c b/tests/crc32.c index 290f5cf..669c6a4 100644 --- a/tests/crc32.c +++ b/tests/crc32.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * crc32.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/fstree_from_file.c b/tests/fstree_from_file.c index 86c1824..1b9fd76 100644 --- a/tests/fstree_from_file.c +++ b/tests/fstree_from_file.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * fstree_from_file.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/fstree_init.c b/tests/fstree_init.c index a9428e4..1a56256 100644 --- a/tests/fstree_init.c +++ b/tests/fstree_init.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * fstree_init.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/fstree_sort.c b/tests/fstree_sort.c index 28aa74e..c90f4b0 100644 --- a/tests/fstree_sort.c +++ b/tests/fstree_sort.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * fstree_sort.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/fstree_xattr.c b/tests/fstree_xattr.c index fabc9b4..0a5b487 100644 --- a/tests/fstree_xattr.c +++ b/tests/fstree_xattr.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * fstree_xattr.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/gen_inode_table.c b/tests/gen_inode_table.c index f1e1f16..7a93efc 100644 --- a/tests/gen_inode_table.c +++ b/tests/gen_inode_table.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * gen_inode_table.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/get_path.c b/tests/get_path.c index 5118876..7ce6aeb 100644 --- a/tests/get_path.c +++ b/tests/get_path.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * get_path.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/mknode_dir.c b/tests/mknode_dir.c index a14f3fe..d4e7c01 100644 --- a/tests/mknode_dir.c +++ b/tests/mknode_dir.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * mknode_dir.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/mknode_reg.c b/tests/mknode_reg.c index 7b9f961..7d8e934 100644 --- a/tests/mknode_reg.c +++ b/tests/mknode_reg.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * mknode_reg.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/mknode_simple.c b/tests/mknode_simple.c index 1cac860..956c5fe 100644 --- a/tests/mknode_simple.c +++ b/tests/mknode_simple.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * mknode_simple.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/mknode_slink.c b/tests/mknode_slink.c index d28f929..2383717 100644 --- a/tests/mknode_slink.c +++ b/tests/mknode_slink.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * mknode_slink.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "fstree.h" diff --git a/tests/str_table.c b/tests/str_table.c index b9da577..8b30b35 100644 --- a/tests/str_table.c +++ b/tests/str_table.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * str_table.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include diff --git a/tests/tar_gnu.c b/tests/tar_gnu.c index 4f78da7..4bff6ff 100644 --- a/tests/tar_gnu.c +++ b/tests/tar_gnu.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_gnu.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/tar_pax.c b/tests/tar_pax.c index 9ca12ff..866e6eb 100644 --- a/tests/tar_pax.c +++ b/tests/tar_pax.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_pax.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/tar_sparse_gnu.c b/tests/tar_sparse_gnu.c index 2aff2af..7cd6132 100644 --- a/tests/tar_sparse_gnu.c +++ b/tests/tar_sparse_gnu.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_sparse_gnu.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/tar_sparse_gnu1.c b/tests/tar_sparse_gnu1.c index b92427e..366b0f4 100644 --- a/tests/tar_sparse_gnu1.c +++ b/tests/tar_sparse_gnu1.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_sparse_gnu1.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/tar_sparse_gnu2.c b/tests/tar_sparse_gnu2.c index 14c2b07..cfc7eb3 100644 --- a/tests/tar_sparse_gnu2.c +++ b/tests/tar_sparse_gnu2.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_sparse_gnu2.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/tar_ustar.c b/tests/tar_ustar.c index 695665f..2a59ac3 100644 --- a/tests/tar_ustar.c +++ b/tests/tar_ustar.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_ustar.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/tar_xattr_bsd.c b/tests/tar_xattr_bsd.c index b2a1290..2e9479c 100644 --- a/tests/tar_xattr_bsd.c +++ b/tests/tar_xattr_bsd.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_xattr_bsd.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" diff --git a/tests/tar_xattr_schily.c b/tests/tar_xattr_schily.c index 9030a45..5f09110 100644 --- a/tests/tar_xattr_schily.c +++ b/tests/tar_xattr_schily.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * tar_xattr_schily.c + * + * Copyright (C) 2019 David Oberhollenzer + */ #include "config.h" #include "util.h" -- cgit v1.2.3