[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <cea29593-930e-29bc-47cc-376c469fa301@gmail.com>
Date: Fri, 11 Sep 2020 09:17:58 +0200
From: "Michael Kerrisk (man-pages)" <mtk.manpages@...il.com>
To: Alejandro Colomar <colomar.6.4.3@...il.com>
Cc: mtk.manpages@...il.com, linux-man@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 13/24] getpwent_r.3: Use sizeof() to get buffer size
(instead of hardcoding macro name)
On 9/10/20 11:13 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@...il.com>
Thanks, Alex. Patch applied.
Cheers,
Michael
> ---
> man3/getpwent_r.3 | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man3/getpwent_r.3 b/man3/getpwent_r.3
> index 64f27dbfb..0f7581091 100644
> --- a/man3/getpwent_r.3
> +++ b/man3/getpwent_r.3
> @@ -190,7 +190,7 @@ main(void)
>
> setpwent();
> while (1) {
> - i = getpwent_r(&pw, buf, BUFLEN, &pwp);
> + i = getpwent_r(&pw, buf, sizeof(buf), &pwp);
> if (i)
> break;
> printf("%s (%d)\etHOME %s\etSHELL %s\en", pwp\->pw_name,
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
Powered by blists - more mailing lists