From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 9D368385781F for ; Mon, 20 Feb 2023 12:45:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9D368385781F Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pU5Xs-0007FM-18; Mon, 20 Feb 2023 07:45:30 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=In-Reply-To:MIME-Version:References:Subject:To:From: Date; bh=LWizfOnE+cVfXFQHCHyKrIYC0AX3vKkTV5I2roi2ZHU=; b=TIjTOLtPvSJ9xYsa+L3h PpD9GQphlE4gMkEKl/YMIEdfAo/wM2CPoGFNShWHWTjF9jWN/2OqL2923lUfQeSlZnDkFiRbD+D4u udHB5/7ZcZucSAksO9FcMA2rhiiaXN6ClPo2GnkgjYdf9Y8OOC/9CPCxxKm05npqHR1kaQBTreE7f NoTk5zsnMSVoTwBkEwi4wQVYDnkvTzVT3WD50rv+QQtcigQkRwGBtb0tNOiPIlTcNK+0c2d0qE3PH h9h6rfremvbzvwvUUGpPC4pR6pVjL6MT3uwPXCjg8PLWgGdacWb+qSjB+ryr5q3Y801CMSyD+eYG3 GLC212hDTt7Kog==; Received: from nat-inria-interne-52-gw-01-bso.bordeaux.inria.fr ([194.199.1.52] helo=begin) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pU5Xq-0006ad-PE; Mon, 20 Feb 2023 07:45:27 -0500 Received: from samy by begin with local (Exim 4.96) (envelope-from ) id 1pU5Xm-004szg-1j; Mon, 20 Feb 2023 13:45:22 +0100 Date: Mon, 20 Feb 2023 13:45:22 +0100 From: Samuel Thibault To: Florian Weimer Cc: libc-alpha@sourceware.org, commit-hurd@gnu.org Subject: Re: [hurd, commited] glob64_time64: Fix typo for stub_warning call (BZ #30146) Message-ID: <20230220124522.ndiyawu2hpw23hwi@begin> References: <20230219222349.118322-1-samuel.thibault@ens-lyon.org> <87sff0h9mr.fsf@oldenburg.str.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87sff0h9mr.fsf@oldenburg.str.redhat.com> Organization: I am not organized User-Agent: NeoMutt/20170609 (1.8.3) X-Spam-Status: No, score=-12.6 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Florian Weimer, le lun. 20 févr. 2023 12:14:04 +0100, a ecrit: > * Samuel Thibault: > > > We were erroneously reporting a stub warning for glob64 instead of > > glob64_time64. > > --- > > posix/glob64-time64.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/posix/glob64-time64.c b/posix/glob64-time64.c > > index 69f6f02116..196429eb6a 100644 > > --- a/posix/glob64-time64.c > > +++ b/posix/glob64-time64.c > > @@ -45,6 +45,6 @@ __glob64_time64 (const char *pattern, int flags, > > } > > libc_hidden_def (__glob64_time64) > > > > -stub_warning (glob64) > > +stub_warning (glob64_time64) > > Shouldn't this be __glob64_time64? Ah, there is no non-__ alias indeed, fixed so. Thanks, Samuel