From 39cd52f20a8ab9667fbf0126954bba4b0f608917 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Tue, 12 Dec 2023 17:21:38 +0900 Subject: [PATCH] agent: Clarify copyright and license in BPF program source Signed-off-by: Daiki Ueno --- agent/src/bpf/audit.bpf.c | 3 ++- crypto-auditing/src/bpf/audit.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/agent/src/bpf/audit.bpf.c b/agent/src/bpf/audit.bpf.c index a0e568e..a6b12b9 100644 --- a/agent/src/bpf/audit.bpf.c +++ b/agent/src/bpf/audit.bpf.c @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* Copyright (C) 2022-2023 The crypto-auditing developers. */ #include "vmlinux.h" #include diff --git a/crypto-auditing/src/bpf/audit.h b/crypto-auditing/src/bpf/audit.h index 84432bc..3ae0c59 100644 --- a/crypto-auditing/src/bpf/audit.h +++ b/crypto-auditing/src/bpf/audit.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* Copyright (C) 2023 The crypto-auditing developers. */ /* This file should be self-contained and do not rely on any system * headers, because it is used by both the BPF program (audit.bpf.c)