All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] unix.7: tfix
@ 2021-07-27 21:38 Štěpán Němec
  2021-07-28 20:32 ` Alejandro Colomar (man-pages)
  0 siblings, 1 reply; 8+ messages in thread
From: Štěpán Němec @ 2021-07-27 21:38 UTC (permalink / raw)
  To: linux-man, Alejandro Colomar, Michael Kerrisk

Signed-off-by: Štěpán Němec <stepnem@gmail.com>
---
 man7/unix.7 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man7/unix.7 b/man7/unix.7
index fc2834fe4051..6d30b25cd476 100644
--- a/man7/unix.7
+++ b/man7/unix.7
@@ -819,7 +819,7 @@ reference to it is closed.
 To pass file descriptors or credentials over a
 .BR SOCK_STREAM
 socket, you must
-to send or receive at least one byte of nonancillary data in the same
+send or receive at least one byte of nonancillary data in the same
 .BR sendmsg (2)
 or
 .BR recvmsg (2)

base-commit: fbe71b1b79e72be3b9afc44b5d479e7fd84b598a
-- 
2.32.0


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

* Re: [PATCH] unix.7: tfix
  2021-07-27 21:38 [PATCH] unix.7: tfix Štěpán Němec
@ 2021-07-28 20:32 ` Alejandro Colomar (man-pages)
  0 siblings, 0 replies; 8+ messages in thread
From: Alejandro Colomar (man-pages) @ 2021-07-28 20:32 UTC (permalink / raw)
  To: Štěpán Němec; +Cc: Michael Kerrisk, linux-man

Hi Štěpán,

On 7/27/21 11:38 PM, Štěpán Němec wrote:
> Signed-off-by: Štěpán Němec <stepnem@gmail.com>

Patch applied!

Thanks,

Alex

> ---
>   man7/unix.7 | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man7/unix.7 b/man7/unix.7
> index fc2834fe4051..6d30b25cd476 100644
> --- a/man7/unix.7
> +++ b/man7/unix.7
> @@ -819,7 +819,7 @@ reference to it is closed.
>   To pass file descriptors or credentials over a
>   .BR SOCK_STREAM
>   socket, you must
> -to send or receive at least one byte of nonancillary data in the same
> +send or receive at least one byte of nonancillary data in the same
>   .BR sendmsg (2)
>   or
>   .BR recvmsg (2)
> 
> base-commit: fbe71b1b79e72be3b9afc44b5d479e7fd84b598a
> 


-- 
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/

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

* Re: [PATCH] unix.7: tfix
  2019-10-29 12:51 Torin Carey
@ 2019-10-31  5:19 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Kerrisk (man-pages) @ 2019-10-31  5:19 UTC (permalink / raw)
  To: Torin Carey; +Cc: mtk.manpages, linux-man

Thanks again, Torin. Patch applied.

Cheers,

Michael


On 10/29/19 1:51 PM, Torin Carey wrote:
> In the given example, the second recvmsg(2) call should receive four bytes,
> as the third sendmsg(2) call only sends four.
> ---
>   man7/unix.7 | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man7/unix.7 b/man7/unix.7
> index a9d54c8c0..bdd5091d1 100644
> --- a/man7/unix.7
> +++ b/man7/unix.7
> @@ -566,7 +566,7 @@ The first call will receive five bytes of data,
>   along with the ancillary data sent by the second
>   .BR sendmsg (2)
>   call.
> -The next call will receive the remaining five bytes of data.
> +The next call will receive the remaining four bytes of data.
>   .PP
>   If the space allocated for receiving incoming ancillary data is too small
>   then the ancillary data is truncated to the number of headers
> 

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

* Re: [PATCH] unix.7: tfix
  2019-10-29 12:41 Torin Carey
@ 2019-10-31  5:18 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Kerrisk (man-pages) @ 2019-10-31  5:18 UTC (permalink / raw)
  To: Torin Carey; +Cc: mtk.manpages, linux-man

Thanks, Torin. Patch applied.

Cheers,

Michael

On 10/29/19 1:41 PM, Torin Carey wrote:
> Signed-off-by: Torin Carey <torin@tcarey.uk>
> ---
>   man7/unix.7 | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man7/unix.7 b/man7/unix.7
> index a9d54c8c0..594894268 100644
> --- a/man7/unix.7
> +++ b/man7/unix.7
> @@ -479,7 +479,7 @@ This can be used for authentication.
>   The credentials are passed as a
>   .I struct ucred
>   ancillary message.
> -Thus structure is defined in
> +This structure is defined in
>   .I <sys/socket.h>
>   as follows:
>   .IP
> 

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

* [PATCH] unix.7: tfix
@ 2019-10-29 12:51 Torin Carey
  2019-10-31  5:19 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 8+ messages in thread
From: Torin Carey @ 2019-10-29 12:51 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man

In the given example, the second recvmsg(2) call should receive four bytes,
as the third sendmsg(2) call only sends four.
---
 man7/unix.7 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man7/unix.7 b/man7/unix.7
index a9d54c8c0..bdd5091d1 100644
--- a/man7/unix.7
+++ b/man7/unix.7
@@ -566,7 +566,7 @@ The first call will receive five bytes of data,
 along with the ancillary data sent by the second
 .BR sendmsg (2)
 call.
-The next call will receive the remaining five bytes of data.
+The next call will receive the remaining four bytes of data.
 .PP
 If the space allocated for receiving incoming ancillary data is too small
 then the ancillary data is truncated to the number of headers
-- 
2.20.1


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

* [PATCH] unix.7: tfix
@ 2019-10-29 12:41 Torin Carey
  2019-10-31  5:18 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 8+ messages in thread
From: Torin Carey @ 2019-10-29 12:41 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man

Signed-off-by: Torin Carey <torin@tcarey.uk>
---
 man7/unix.7 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man7/unix.7 b/man7/unix.7
index a9d54c8c0..594894268 100644
--- a/man7/unix.7
+++ b/man7/unix.7
@@ -479,7 +479,7 @@ This can be used for authentication.
 The credentials are passed as a
 .I struct ucred
 ancillary message.
-Thus structure is defined in
+This structure is defined in
 .I <sys/socket.h>
 as follows:
 .IP
-- 
2.20.1


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

* Re: [PATCH] unix.7: tfix
       [not found] ` <1336248062-19460-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2012-05-05 21:35   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Kerrisk (man-pages) @ 2012-05-05 21:35 UTC (permalink / raw)
  To: David Prévot; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

On Sun, May 6, 2012 at 8:01 AM, David Prévot <taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote:
> Introduced in 1e4e3b.

Applied!

Thanks,

Michael


> ---
>  man7/unix.7 |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man7/unix.7 b/man7/unix.7
> index adbfd79..44369e6 100644
> --- a/man7/unix.7
> +++ b/man7/unix.7
> @@ -12,7 +12,7 @@
>  .\"     address that can appear in the sockaddr_un structure: pathname,
>  .\"     unnamed, and abstract.
>  .\"
> -.TH UNIX  7 2102-04-16 "Linux" "Linux Programmer's Manual"
> +.TH UNIX  7 2012-04-16 "Linux" "Linux Programmer's Manual"
>  .SH NAME
>  unix, AF_UNIX, AF_LOCAL \- Sockets for local
>  interprocess communication
> --
> 1.7.10
>



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Author of "The Linux Programming Interface"; http://man7.org/tlpi/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH] unix.7: tfix
@ 2012-05-05 20:01 David Prévot
       [not found] ` <1336248062-19460-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: David Prévot @ 2012-05-05 20:01 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

Introduced in 1e4e3b.
---
 man7/unix.7 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man7/unix.7 b/man7/unix.7
index adbfd79..44369e6 100644
--- a/man7/unix.7
+++ b/man7/unix.7
@@ -12,7 +12,7 @@
 .\"     address that can appear in the sockaddr_un structure: pathname,
 .\"     unnamed, and abstract.
 .\"
-.TH UNIX  7 2102-04-16 "Linux" "Linux Programmer's Manual"
+.TH UNIX  7 2012-04-16 "Linux" "Linux Programmer's Manual"
 .SH NAME
 unix, AF_UNIX, AF_LOCAL \- Sockets for local
 interprocess communication
-- 
1.7.10

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2021-07-28 20:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-27 21:38 [PATCH] unix.7: tfix Štěpán Němec
2021-07-28 20:32 ` Alejandro Colomar (man-pages)
  -- strict thread matches above, loose matches on Subject: below --
2019-10-29 12:51 Torin Carey
2019-10-31  5:19 ` Michael Kerrisk (man-pages)
2019-10-29 12:41 Torin Carey
2019-10-31  5:18 ` Michael Kerrisk (man-pages)
2012-05-05 20:01 David Prévot
     [not found] ` <1336248062-19460-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2012-05-05 21:35   ` 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.