From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 335B4C4332F for ; Mon, 12 Dec 2022 12:51:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232307AbiLLMvb (ORCPT ); Mon, 12 Dec 2022 07:51:31 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55750 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232277AbiLLMv3 (ORCPT ); Mon, 12 Dec 2022 07:51:29 -0500 Received: from gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3D94F265F for ; Mon, 12 Dec 2022 04:51:29 -0800 (PST) Received: from localhost.localdomain (unknown [182.253.183.130]) by gnuweeb.org (Postfix) with ESMTPSA id 28DBA8180C; Mon, 12 Dec 2022 12:51:26 +0000 (UTC) X-GW-Data: lPqxHiMPbJw1wb7CM9QUryAGzr0yq5atzVDdxTR0iA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1670849489; bh=L4DAuy9QEuLloxUWvI4Fq15R5BWulmfOXVpjFL7WRhw=; h=From:To:Cc:Subject:Date:From; b=icaKKnMnSjp1o+jxq4UKJR2MFQalXtobo3wmvY6egspC/h+o2j5Gd1+co04IcsCNT y3tFNm2FTyjTKU99uwF6pHvFDbObwysdFIr9/MqVK3v1GmdQ/ZB71TxA05bHvcAnVo 73MKiyimGpDu8BCNiB1sAiZZJKW4Esi+LtyvEez8pNzkLM/QZ3lfaL09btcbW/TnSc lsUJfsffKhJc2GXxGSNRQp00IGgPoaW8lnHgRbTgdfL3OZzuvKbNRjfx4bN7H3hRaS SQZwtuEgeq/JfDsH3vfD7mi9IUtyJcO+ASCpkcdhAfgIubb5ONxUFZEYAllIvauyU4 NwJDUOBtRDMhw== From: Ammar Faizi To: Jens Axboe Cc: io-uring Mailing List , Ammar Faizi , Nicolai Stange , Yuriy Chernyshov Subject: [RESEND PATCH] test/sendmsg_fs_cve: Fix the wrong SPDX-License-Identifier Date: Mon, 12 Dec 2022 19:51:21 +0700 Message-Id: <20221212125121.68094-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org From: Ammar Faizi 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 Reported-by: Yuriy Chernyshov Fixes: https://github.com/axboe/liburing/issues/753 Fixes: d36db0b72b9399623dee12b61069845d8e1bfa05 ("test: Add missing SPDX-License-Identifier") Signed-off-by: Ammar Faizi --- 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 * * 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