All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alejandro Colomar <alx@kernel.org>
To: Fedor Lapshin <fe.lap.prog@gmail.com>
Cc: linux-man@vger.kernel.org
Subject: Re: [PATCH] getgrouplist.3: EXAMPLES: improve error handling for getpwnam(3)
Date: Sat, 30 Mar 2024 23:55:21 +0100	[thread overview]
Message-ID: <ZgiYWl7Y396WFLQU@debian> (raw)
In-Reply-To: <CAJ_gjBoqD2mWoJF0QH7YB=Z0Wy00XFO2yRJ0VQDxPmp3niisYg@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 987 bytes --]

On Fri, Mar 29, 2024 at 03:21:11AM +0300, Fedor Lapshin wrote:
> Signed-off-by: Fedor Lapshin <fe.lap.prog@gmail.com>

Hi Fedor,

Patch applied, with some tweaks.  Thanks!

Have a lovely night!
Alex

> ---
>  man3/getgrouplist.3 | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/man3/getgrouplist.3 b/man3/getgrouplist.3
> index 41389b6c3..e2e640d56 100644
> --- a/man3/getgrouplist.3
> +++ b/man3/getgrouplist.3
> @@ -162,10 +162,12 @@ main(int argc, char *argv[])
>  \&
>      /* Fetch passwd structure (contains first group ID for user). */
>  \&
> +    errno = 0;
>      pw = getpwnam(argv[1]);
>      if (pw == NULL) {
> -        perror("getpwnam");
> -        exit(EXIT_SUCCESS);
> +        if (errno) perror("getpwnam");
> +        else fprintf(stderr, "no such user\en");
> +        exit(EXIT_FAILURE);
>      }
>  \&
>      /* Retrieve group list. */
> --
> 2.34.1
> 

-- 
<https://www.alejandro-colomar.es/>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      parent reply	other threads:[~2024-03-30 22:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-29  0:21 [PATCH] getgrouplist.3: EXAMPLES: improve error handling for getpwnam(3) Fedor Lapshin
2024-03-29  0:24 ` Fedor Lapshin
2024-03-30 22:55 ` Alejandro Colomar [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZgiYWl7Y396WFLQU@debian \
    --to=alx@kernel.org \
    --cc=fe.lap.prog@gmail.com \
    --cc=linux-man@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.