summaryrefslogtreecommitdiff
path: root/src/coredump
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-06-12 18:23:39 +0200
committerLennart Poettering <lennart@poettering.net>2018-06-14 10:20:20 +0200
commit0c697941389b7379c4471bc0a067ede02814bc57 (patch)
tree3b945704702c856fb7d7802325e6e2753c1b4a50 /src/coredump
parent2aafd60beecb0e9cc2c019b23ef63d19bfdedb01 (diff)
downloadsystemd-0c697941389b7379c4471bc0a067ede02814bc57.tar.gz
tree-wide: remove Lennart's copyright lines
These lines are generally out-of-date, incomplete and unnecessary. With SPDX and git repository much more accurate and fine grained information about licensing and authorship is available, hence let's drop the per-file copyright notice. Of course, removing copyright lines of others is problematic, hence this commit only removes my own lines and leaves all others untouched. It might be nicer if sooner or later those could go away too, making git the only and accurate source of authorship information.
Diffstat (limited to 'src/coredump')
-rw-r--r--src/coredump/coredump-vacuum.c3
-rw-r--r--src/coredump/coredump-vacuum.h4
-rw-r--r--src/coredump/coredump.c3
-rw-r--r--src/coredump/stacktrace.c3
-rw-r--r--src/coredump/stacktrace.h4
5 files changed, 0 insertions, 17 deletions
diff --git a/src/coredump/coredump-vacuum.c b/src/coredump/coredump-vacuum.c
index 40685e7b79..6ce5dfc71d 100644
--- a/src/coredump/coredump-vacuum.c
+++ b/src/coredump/coredump-vacuum.c
@@ -1,7 +1,4 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
-/***
- Copyright 2014 Lennart Poettering
-***/
#include <sys/statvfs.h>
diff --git a/src/coredump/coredump-vacuum.h b/src/coredump/coredump-vacuum.h
index 74295f39cf..0db116736c 100644
--- a/src/coredump/coredump-vacuum.h
+++ b/src/coredump/coredump-vacuum.h
@@ -1,10 +1,6 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
-/***
- Copyright 2014 Lennart Poettering
-***/
-
#include <inttypes.h>
#include <sys/types.h>
diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c
index a6c67ceab7..d2b4ba2a21 100644
--- a/src/coredump/coredump.c
+++ b/src/coredump/coredump.c
@@ -1,7 +1,4 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
-/***
- Copyright 2012 Lennart Poettering
-***/
#include <errno.h>
#include <stdio.h>
diff --git a/src/coredump/stacktrace.c b/src/coredump/stacktrace.c
index a73da47ebf..dab4c1ad9b 100644
--- a/src/coredump/stacktrace.c
+++ b/src/coredump/stacktrace.c
@@ -1,7 +1,4 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
-/***
- Copyright 2014 Lennart Poettering
-***/
#include <dwarf.h>
#include <elfutils/libdwfl.h>
diff --git a/src/coredump/stacktrace.h b/src/coredump/stacktrace.h
index 5406e5aeef..52900424a7 100644
--- a/src/coredump/stacktrace.h
+++ b/src/coredump/stacktrace.h
@@ -1,8 +1,4 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
-/***
- Copyright 2014 Lennart Poettering
-***/
-
int coredump_make_stack_trace(int fd, const char *executable, char **ret);