aboutsummaryrefslogtreecommitdiff
path: root/lib/fstree
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-30 06:53:25 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-07-30 06:53:25 +0200
commit7e00faaca0207eb6ee6cf109c09cc489d8fb7e3f (patch)
tree6cb236ccadeb001b70d64d6fd7f52dad3c0b3623 /lib/fstree
parent3811f48ced97ec0fe56b48f0d9d906a43037e2fd (diff)
Add propper copyright headers to all source files
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/fstree')
-rw-r--r--lib/fstree/add_by_path.c5
-rw-r--r--lib/fstree/deduplicate.c5
-rw-r--r--lib/fstree/fstree.c5
-rw-r--r--lib/fstree/fstree_from_dir.c5
-rw-r--r--lib/fstree/fstree_from_file.c5
-rw-r--r--lib/fstree/fstree_sort.c6
-rw-r--r--lib/fstree/gen_file_list.c5
-rw-r--r--lib/fstree/gen_inode_table.c5
-rw-r--r--lib/fstree/get_path.c5
-rw-r--r--lib/fstree/mknode.c5
-rw-r--r--lib/fstree/node_from_path.c5
-rw-r--r--lib/fstree/node_stat.c5
-rw-r--r--lib/fstree/selinux.c5
-rw-r--r--lib/fstree/xattr.c5
14 files changed, 71 insertions, 0 deletions
diff --git a/lib/fstree/add_by_path.c b/lib/fstree/add_by_path.c
index 8983722..fbc2ce7 100644
--- a/lib/fstree/add_by_path.c
+++ b/lib/fstree/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 <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/deduplicate.c b/lib/fstree/deduplicate.c
index 9ae4440..7390a2c 100644
--- a/lib/fstree/deduplicate.c
+++ b/lib/fstree/deduplicate.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * deduplicate.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/fstree.c b/lib/fstree/fstree.c
index 553809b..3c240e7 100644
--- a/lib/fstree/fstree.c
+++ b/lib/fstree/fstree.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * fstree.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/fstree_from_dir.c b/lib/fstree/fstree_from_dir.c
index 2343fef..494b644 100644
--- a/lib/fstree/fstree_from_dir.c
+++ b/lib/fstree/fstree_from_dir.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * fstree_from_dir.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/fstree_from_file.c b/lib/fstree/fstree_from_file.c
index 46926ee..57b24cc 100644
--- a/lib/fstree/fstree_from_file.c
+++ b/lib/fstree/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 <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/fstree_sort.c b/lib/fstree/fstree_sort.c
index 404554d..53fb58a 100644
--- a/lib/fstree/fstree_sort.c
+++ b/lib/fstree/fstree_sort.c
@@ -1,4 +1,10 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * fstree_sort.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ * Copyright (C) 2019 Zachary Dremann <dremann@gmail.com>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/gen_file_list.c b/lib/fstree/gen_file_list.c
index 30cd2f6..c1cde51 100644
--- a/lib/fstree/gen_file_list.c
+++ b/lib/fstree/gen_file_list.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * gen_file_list.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/gen_inode_table.c b/lib/fstree/gen_inode_table.c
index 15ef577..98294fa 100644
--- a/lib/fstree/gen_inode_table.c
+++ b/lib/fstree/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 <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/get_path.c b/lib/fstree/get_path.c
index e11af3d..decf92e 100644
--- a/lib/fstree/get_path.c
+++ b/lib/fstree/get_path.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * get_path.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/mknode.c b/lib/fstree/mknode.c
index 18602e4..954771f 100644
--- a/lib/fstree/mknode.c
+++ b/lib/fstree/mknode.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * mknode.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/node_from_path.c b/lib/fstree/node_from_path.c
index 122e106..9140b2d 100644
--- a/lib/fstree/node_from_path.c
+++ b/lib/fstree/node_from_path.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * node_from_path.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/node_stat.c b/lib/fstree/node_stat.c
index 4c3afe6..d17d244 100644
--- a/lib/fstree/node_stat.c
+++ b/lib/fstree/node_stat.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * node_stat.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/selinux.c b/lib/fstree/selinux.c
index 23ce828..1cb921d 100644
--- a/lib/fstree/selinux.c
+++ b/lib/fstree/selinux.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * selinux.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"
diff --git a/lib/fstree/xattr.c b/lib/fstree/xattr.c
index 35517de..449ef45 100644
--- a/lib/fstree/xattr.c
+++ b/lib/fstree/xattr.c
@@ -1,4 +1,9 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * xattr.c
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
#include "config.h"
#include "fstree.h"