From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id QLQvNvo/+WFjJwAAWB0awg (envelope-from ) for ; Tue, 01 Feb 2022 09:13:14 -0500 Received: by simark.ca (Postfix, from userid 112) id DB9971F3B4; Tue, 1 Feb 2022 09:13:14 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.9 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 41E111EA69 for ; Tue, 1 Feb 2022 09:13:14 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C29DB386481D for ; Tue, 1 Feb 2022 14:13:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C29DB386481D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1643724793; bh=7nkzludQ+M/skmoMNeVeBuoHbN/5RadAzuWNUKn4B3c=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=Jfq44NgwMjl1H5QPzxGKvYBf+/G8GM+95Kzx38247yvBSSX4WmJNb484kbfeEljtP zJD4m91QA0qWsytOz++ewZwl5vYZVBb93Uak1/P+ZKBeCA+Xvd6hikV+xNyCZgUa/l a6mG9RugtwQTyZS+P2AlPNkmjSoJniKhH1XWUN7I= Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id 26F56388E816 for ; Tue, 1 Feb 2022 14:09:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 26F56388E816 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 211E90p8028411 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 1 Feb 2022 09:09:05 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 211E90p8028411 Received: from [10.0.0.11] (192-222-157-6.qc.cable.ebox.net [192.222.157.6]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 60E451EA69; Tue, 1 Feb 2022 09:08:54 -0500 (EST) Message-ID: Date: Tue, 1 Feb 2022 09:08:54 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH] hurd: Fix RPC prototypes Content-Language: en-US To: Samuel Thibault , gdb-patches@sourceware.org References: <20220201021022.r7mrgtxzhtz36zhg@begin> In-Reply-To: <20220201021022.r7mrgtxzhtz36zhg@begin> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Tue, 1 Feb 2022 14:09:00 +0000 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Cc: Thomas Schwinge , thomas@schwinge.name Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 2022-01-31 21:10, Samuel Thibault via Gdb-patches wrote: > The last updates of MIG introduced qualifying strings and arrays with > const as appropriate. We thus have to update the protypes in gdb too. Pushed, thanks! Simon