From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: master 2e8cc206f52 1/2: Avoid backwards clock in movemail timestamps Date: Wed, 22 Mar 2023 17:29:40 +0200 Message-ID: <83sfdw6byz.fsf@gnu.org> References: <167943494578.25150.2485423596885016098@vcs2.savannah.gnu.org> <20230321214226.5729DC13912@vcs2.savannah.gnu.org> <87355xdw0d.fsf@igel.home> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6556"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org, eggert@cs.ucla.edu To: Andreas Schwab Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Mar 22 16:30:48 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pf0QK-0001TT-Ew for ged-emacs-devel@m.gmane-mx.org; Wed, 22 Mar 2023 16:30:48 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pf0P6-0003Rm-A8; Wed, 22 Mar 2023 11:29:32 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pf0P4-0003Ni-St for emacs-devel@gnu.org; Wed, 22 Mar 2023 11:29:30 -0400 Original-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 1pf0P3-00041e-Jy; Wed, 22 Mar 2023 11:29:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=BfIR8muApq+s393KqvNamwvG5i7mRKIIudsV9G5DMQc=; b=SuVKI1eRMlepah9z9neT HtSQ2vjwDQNiYzza26nhkxC5Nq1quCK2ItL0ZyQqycdfcd0t3p0kyRJQS9gfUooZzIEZ/dxjYCjl2 3EO0ILdsPUz4bJHn2xLaSRIsRO3kfY5UV34i7y/34K5PtgwnJbwxoz9bfwlOWT32Kv94yBzuqCdtV 2Nj+ROPr/l4Pk8Ktyq0hRmQnMXMBRjraghIuJz7qiLIqGqJ60HwGdEfOngAnsTEm+i9/Lo7KZN9Jy ljkDJJZxcDfqYVeBGVIYmVKQKnR4Z0hAIKUZyGOSyqXIoNgoxJcfO1oO6oog1AAR7V0Ab3FmVdbGW MYzh7vtX9bieGw==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pf0P0-00079o-HU; Wed, 22 Mar 2023 11:29:29 -0400 In-Reply-To: <87355xdw0d.fsf@igel.home> (message from Andreas Schwab on Wed, 22 Mar 2023 09:34:58 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:304715 Archived-At: > From: Andreas Schwab > Cc: Paul Eggert > Date: Wed, 22 Mar 2023 09:34:58 +0100 > > movemail.c: In function ‘mbx_delimit_begin’: > movemail.c:849:16: warning: implicit declaration of function ‘current_timespec’ [-Wimplicit-function-declaration] > time_t now = current_timespec ().tv_sec; > ^~~~~~~~~~~~~~~~ > movemail.c:849:35: error: request for member ‘tv_sec’ in something not a structure or union > time_t now = current_timespec ().tv_sec; Thanks, should be fixed now.