From: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> This test program's license is GPL-2.0-or-later, but I put the wrong SPDX-License-Identifier in commit: d36db0b72b9 ("test: Add missing SPDX-License-Identifier") Fix it. Cc: Nicolai Stange <nstange@xxxxxxx> Reported-by: Yuriy Chernyshov <georgthegreat@xxxxxxxxx> Fixes: https://github.com/axboe/liburing/issues/753 Fixes: d36db0b72b9399623dee12b61069845d8e1bfa05 ("test: Add missing SPDX-License-Identifier") Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- test/sendmsg_fs_cve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sendmsg_fs_cve.c b/test/sendmsg_fs_cve.c index 2ce3114..9e444d7 100644 --- a/test/sendmsg_fs_cve.c +++ b/test/sendmsg_fs_cve.c @@ -1,11 +1,11 @@ -/* SPDX-License-Identifier: MIT */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * repro-CVE-2020-29373 -- Reproducer for CVE-2020-29373. * * Copyright (c) 2021 SUSE * Author: Nicolai Stange <nstange@xxxxxxx> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. base-commit: 5f0cf68fc2cd28617a86976fc906447f737086d5 -- Ammar Faizi