From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.6 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 17034C4727E for ; Wed, 30 Sep 2020 12:13:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A82F3206B7 for ; Wed, 30 Sep 2020 12:13:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=kalchreuter.de header.i=@kalchreuter.de header.b="CsK4ePi+" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728235AbgI3MNj (ORCPT ); Wed, 30 Sep 2020 08:13:39 -0400 Received: from mo4-p00-ob.smtp.rzone.de ([81.169.146.163]:17828 "EHLO mo4-p00-ob.smtp.rzone.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728042AbgI3MNj (ORCPT ); Wed, 30 Sep 2020 08:13:39 -0400 X-Greylist: delayed 357 seconds by postgrey-1.27 at vger.kernel.org; Wed, 30 Sep 2020 08:13:38 EDT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1601468017; s=strato-dkim-0002; d=kalchreuter.de; h=Date:Message-ID:Subject:From:Cc:To:X-RZG-CLASS-ID:X-RZG-AUTH:From: Subject:Sender; bh=ZYPnjYo34RDUp1AbIzn3Y19gULW0UOb5k+y9NPygd40=; b=CsK4ePi+6+E0vczk7ZjzQpRQbnTcGmFroCwUxOcRUi2MY15+rDZwI3s5nT9XG9C4qD T8PjC+BL9Qs1m35A2kKaERJfPAE31HIi4YZW+BfKKIECLG+o0OmBLOOlAIn6SHpNpVfo +Wz7RhWNp3GhHMuYkNB5v/OUjsQlSTiMfTapx0sHjE3WXhAWb4rXY5mLH/Itrz4s6BfX lTskyHA/Tya5EwggVZANF7UVXLEnlSoA1GSwMWlnjRelTrLgqFosBbD1unAU/GQ5CJtE u991D8DSrm4FCFQSLS74IOVFPRG1xxDakuZpiHEPzBqjvnJ2Jl9y6e9Ekx1vcVM/8CIq chrg== X-RZG-AUTH: ":L2QWfFO8dO93X8MypduWHW/c7aDr3kz0lzYyuq1XNdzyRSRMf4tWwy7sZzbRGGFWRXvnUBwgLDCtJUflLINcIQVHccJHy1aTAGXI1NQ=" X-RZG-CLASS-ID: mo00 Received: from [IPv6:2003:e5:7737:bc00:ca60:ff:fec3:2d13] by smtp.strato.de (RZmta 46.10.7 AUTH) with ESMTPSA id R05aa8w8UC7bb73 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits)) (Client did not present a certificate); Wed, 30 Sep 2020 14:07:37 +0200 (CEST) To: mtk.manpages@gmail.com Cc: linux-man@vger.kernel.org From: Christoph Kalchreuter Subject: Typo in stat(2) Message-ID: <373374d2-851f-67f6-4059-90130aaab344@kalchreuter.de> Date: Wed, 30 Sep 2020 14:07:36 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: de-DE Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-man@vger.kernel.org Hello, I'm under the impression that I found three typing errors in stat(2). Used distribution: "Ubuntu 18.04.5 LTS" Also appears in: "https://man7.org/linux/man-pages/man2/stat.2.html" There are three Letters "e" missing in Section "DESCRIPTION", Subsection "The stat structure": struct timespec st_atim; /* Time of last access */ struct timespec st_mtim; /* Time of last modification */ sruct timespec st_ctim; /* Time of last status change */ should possibly be: struct timespec st_atime; /* Time of last access */ struct timespec st_mtime; /* Time of last modification */ sruct timespec st_ctime; /* Time of last status change */