From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C132C42DDB; Mon, 10 Jul 2023 23:10:57 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4E7E840698; Mon, 10 Jul 2023 23:10:57 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 75CBE40150 for ; Mon, 10 Jul 2023 23:10:56 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 6DBA721C4251; Mon, 10 Jul 2023 14:10:55 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 6DBA721C4251 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1689023455; bh=G95hZ5amIAzdue4ayOhp0ua0fiSNkxYB8nfbUHwqwLk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=WHq7CVgfFHSC7TjpIk6xLyL3YuliDIkmbg/vuH4+UEGyUUdNhTXR5hDsXQz6RWEbu JA5c1/QpahqnSi2nLR9Ixbff4pQFLNOz8jLRTFKUFp3DBejdn8Baadhbh6llxTmlqe E3JUw3xSINjpQ/oyZgl/n+BLAnL05oqALJogT+hg= Date: Mon, 10 Jul 2023 14:10:55 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org, Dmitry Kozlyuk , Narcisa Ana Maria Vasile , Dmitry Malloy , Pallavi Kadam Subject: Re: [PATCH v7 1/5] windows: make getopt functions have const properties Message-ID: <20230710211055.GA13054@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20200814173441.23086-1-stephen@networkplumber.org> <20230705224805.286156-1-stephen@networkplumber.org> <20230705224805.286156-2-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230705224805.286156-2-stephen@networkplumber.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Jul 05, 2023 at 03:48:01PM -0700, Stephen Hemminger wrote: > This aligns getopt, getopt_long, etc to have the same const > attributes as Linux and FreeBSD. The changes are derived from > the FreeBSD version of getopt_long. > > Signed-off-by: Stephen Hemminger > --- Acked-by: Tyler Retzlaff