All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] setfsgid.2: tfix
@ 2021-02-15 13:15 Alejandro Colomar
  2021-02-15 19:55 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 2+ messages in thread
From: Alejandro Colomar @ 2021-02-15 13:15 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man

The type of fsgid is git_t, and not uid_t.  Fix it.

......

.../glibc$ grep_glibc_prototype setfsgid
sysdeps/unix/sysv/linux/sys/fsuid.h:31:
extern int setfsgid (__gid_t __gid) __THROW;
.../glibc$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 man2/setfsgid.2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/setfsgid.2 b/man2/setfsgid.2
index e2d4d09f3..3fd22f3a5 100644
--- a/man2/setfsgid.2
+++ b/man2/setfsgid.2
@@ -36,7 +36,7 @@ setfsgid \- set group identity used for filesystem checks
 .nf
 .B #include <sys/fsuid.h>
 .PP
-.BI "int setfsgid(uid_t " fsgid );
+.BI "int setfsgid(gid_t " fsgid );
 .fi
 .SH DESCRIPTION
 On Linux, a process has both a filesystem group ID and an effective group ID.
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] setfsgid.2: tfix
  2021-02-15 13:15 [PATCH] setfsgid.2: tfix Alejandro Colomar
@ 2021-02-15 19:55 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-02-15 19:55 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

Hi Alex,

On 2/15/21 2:15 PM, Alejandro Colomar wrote:
> The type of fsgid is git_t, and not uid_t.  Fix it.

Cute. That mistake has been present for about 25 years!

Patch applied.

Thanks,

Michael

> ......
> 
> .../glibc$ grep_glibc_prototype setfsgid
> sysdeps/unix/sysv/linux/sys/fsuid.h:31:
> extern int setfsgid (__gid_t __gid) __THROW;
> .../glibc$
> 
> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
> ---
>  man2/setfsgid.2 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man2/setfsgid.2 b/man2/setfsgid.2
> index e2d4d09f3..3fd22f3a5 100644
> --- a/man2/setfsgid.2
> +++ b/man2/setfsgid.2
> @@ -36,7 +36,7 @@ setfsgid \- set group identity used for filesystem checks
>  .nf
>  .B #include <sys/fsuid.h>
>  .PP
> -.BI "int setfsgid(uid_t " fsgid );
> +.BI "int setfsgid(gid_t " fsgid );
>  .fi
>  .SH DESCRIPTION
>  On Linux, a process has both a filesystem group ID and an effective group ID.
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-02-15 19:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-15 13:15 [PATCH] setfsgid.2: tfix Alejandro Colomar
2021-02-15 19:55 ` Michael Kerrisk (man-pages)

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.