From patchwork Wed Aug 9 19:15:17 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eder Zulian X-Patchwork-Id: 713120 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 303DBC0015E for ; Wed, 9 Aug 2023 19:18:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233059AbjHITSq (ORCPT ); Wed, 9 Aug 2023 15:18:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46794 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232877AbjHITSo (ORCPT ); Wed, 9 Aug 2023 15:18:44 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E401B4487 for ; Wed, 9 Aug 2023 12:17:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1691608650; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=t4nOVBVDKf1HKhQUM4CTxpWv4x1L1QPrNCj8BsaiFyw=; b=OglDAjQM7bgWMcTmjfuFoNlrvdyMjhTPteQC52zhaD4BwTQi3vcQc35osPE/MjNCFmsoU8 28mwR/dJTTD2VWhVbEZAi8b/JVJFzhB9b31cYv47FCnZTGiefgcmF0DQcsNfHUPTD85eLk mVpeeO0oVK+zm8kF1mvX/JyclHvilmw= Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-345-c5bCbZb5PVes1DC_9479AQ-1; Wed, 09 Aug 2023 15:17:28 -0400 X-MC-Unique: c5bCbZb5PVes1DC_9479AQ-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 7E6FD3C0C881 for ; Wed, 9 Aug 2023 19:17:28 +0000 (UTC) Received: from ezulian.remote.csb (unknown [10.39.192.197]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9753F40BC780; Wed, 9 Aug 2023 19:17:27 +0000 (UTC) From: Eder Zulian To: linux-rt-users@vger.kernel.org Cc: jkacur@redhat.com, williams@redhat.com, ezulian@redhat.com Subject: [PATCH 55/86] rteval: Replace GPL license notice with SPDX tag in argparser.c Date: Wed, 9 Aug 2023 21:15:17 +0200 Message-Id: <20230809191548.359938-56-ezulian@redhat.com> In-Reply-To: <20230809191548.359938-1-ezulian@redhat.com> References: <20230809191548.359938-1-ezulian@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 Precedence: bulk List-ID: X-Mailing-List: linux-rt-users@vger.kernel.org Replace GPL boilerplate with SPDX-License-Identifier tag in argparser.c. Signed-off-by: Eder Zulian --- server/parser/argparser.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/server/parser/argparser.c b/server/parser/argparser.c index 6ad4c69..70d6961 100644 --- a/server/parser/argparser.c +++ b/server/parser/argparser.c @@ -1,14 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2009 Red Hat Inc. * - * This application 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; version 2. - * - * This application is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. */ /**