diff options
Diffstat (limited to 'unpack')
-rw-r--r-- | unpack/describe.c | 5 | ||||
-rw-r--r-- | unpack/fill_files.c | 5 | ||||
-rw-r--r-- | unpack/list_files.c | 5 | ||||
-rw-r--r-- | unpack/options.c | 5 | ||||
-rw-r--r-- | unpack/rdsquashfs.c | 5 | ||||
-rw-r--r-- | unpack/rdsquashfs.h | 5 | ||||
-rw-r--r-- | unpack/restore_fstree.c | 5 |
7 files changed, 35 insertions, 0 deletions
diff --git a/unpack/describe.c b/unpack/describe.c index be27857..627bc2b 100644 --- a/unpack/describe.c +++ b/unpack/describe.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * describe.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static void print_name(tree_node_t *n) diff --git a/unpack/fill_files.c b/unpack/fill_files.c index 88efd01..e104ae7 100644 --- a/unpack/fill_files.c +++ b/unpack/fill_files.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * fill_files.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "config.h" #include "rdsquashfs.h" diff --git a/unpack/list_files.c b/unpack/list_files.c index 9c48d46..857657b 100644 --- a/unpack/list_files.c +++ b/unpack/list_files.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * list_files.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static void mode_to_str(uint16_t mode, char *p) diff --git a/unpack/options.c b/unpack/options.c index e7911e5..c281415 100644 --- a/unpack/options.c +++ b/unpack/options.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * options.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static struct option long_opts[] = { diff --git a/unpack/rdsquashfs.c b/unpack/rdsquashfs.c index f165b90..4b2dc6c 100644 --- a/unpack/rdsquashfs.c +++ b/unpack/rdsquashfs.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * rdsquashfs.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" int main(int argc, char **argv) diff --git a/unpack/rdsquashfs.h b/unpack/rdsquashfs.h index 56250fd..b7c2fdf 100644 --- a/unpack/rdsquashfs.h +++ b/unpack/rdsquashfs.h @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * rdsquashfs.h + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #ifndef RDSQUASHFS_H #define RDSQUASHFS_H diff --git a/unpack/restore_fstree.c b/unpack/restore_fstree.c index a868062..c25763c 100644 --- a/unpack/restore_fstree.c +++ b/unpack/restore_fstree.c @@ -1,4 +1,9 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * restore_fstree.c + * + * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> + */ #include "rdsquashfs.h" static int create_node(tree_node_t *n, int flags) |