All of lore.kernel.org
 help / color / mirror / Atom feed
* Some typo and formatting fix
@ 2012-08-13  1:34 David Prévot
       [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: David Prévot @ 2012-08-13  1:34 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Hi Michael,

Here are some small issue spotted during the ongoing translation
update. I'm not totally sure for the 4th one, but it seems there
is something to fix anyway.

Regards

David

--
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] 13+ messages in thread

* [PATCH 1/5] ptrace.2: tfix
       [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2012-08-13  1:34   ` David Prévot
       [not found]     ` <1344821668-11324-2-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2012-08-13  1:34   ` [PATCH 2/5] readdir.3: ffix David Prévot
                     ` (4 subsequent siblings)
  5 siblings, 1 reply; 13+ messages in thread
From: David Prévot @ 2012-08-13  1:34 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

---
 man2/ptrace.2 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/ptrace.2 b/man2/ptrace.2
index efaf597..3f82d64 100644
--- a/man2/ptrace.2
+++ b/man2/ptrace.2
@@ -1785,7 +1785,7 @@ to return to userspace with the error
 .BR EINTR .
 In this particular case, the program reacted to
 .B EINTR
-by checking ithe current time, and then executing
+by checking the current time, and then executing
 .BR epoll_wait (2)
 again.
 (Programs which do not expect such "stray"
-- 
1.7.10.4

--
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] 13+ messages in thread

* [PATCH 2/5] readdir.3: ffix
       [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2012-08-13  1:34   ` [PATCH 1/5] ptrace.2: tfix David Prévot
@ 2012-08-13  1:34   ` David Prévot
       [not found]     ` <1344821668-11324-3-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2012-08-13  1:34   ` [PATCH 3/5] strcat.3: ffix David Prévot
                     ` (3 subsequent siblings)
  5 siblings, 1 reply; 13+ messages in thread
From: David Prévot @ 2012-08-13  1:34 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

---
 man3/readdir.3 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man3/readdir.3 b/man3/readdir.3
index 0660efd..90f2ff1 100644
--- a/man3/readdir.3
+++ b/man3/readdir.3
@@ -227,7 +227,7 @@ as follows:
 .nf
 
 name_max = pathconf(dirpath, _PC_NAME_MAX);
-if (name_max == \-1)        /* Limit not defined, or error */
+if (name_max == \-1)         /* Limit not defined, or error */
     name_max = 255;         /* Take a guess */
 len = offsetof(struct dirent, d_name) + name_max + 1;
 entryp = malloc(len);
-- 
1.7.10.4

--
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] 13+ messages in thread

* [PATCH 3/5] strcat.3: ffix
       [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2012-08-13  1:34   ` [PATCH 1/5] ptrace.2: tfix David Prévot
  2012-08-13  1:34   ` [PATCH 2/5] readdir.3: ffix David Prévot
@ 2012-08-13  1:34   ` David Prévot
       [not found]     ` <1344821668-11324-4-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2012-08-13  1:34   ` [PATCH 4/5] strcpy.3: tfix David Prévot
                     ` (2 subsequent siblings)
  5 siblings, 1 reply; 13+ messages in thread
From: David Prévot @ 2012-08-13  1:34 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

---
 man3/strcat.3 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man3/strcat.3 b/man3/strcat.3
index ef53641..a245283 100644
--- a/man3/strcat.3
+++ b/man3/strcat.3
@@ -108,7 +108,7 @@ Some systems (the BSDs, Solaris, and others) provide the following function:
 This function appends the null-terminated string
 .I src
 to the string
-.I dest,
+.IR dest ,
 copying at most
 .IR "size\-strlen(dest)\-1"
 from
-- 
1.7.10.4

--
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] 13+ messages in thread

* [PATCH 4/5] strcpy.3: tfix
       [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
                     ` (2 preceding siblings ...)
  2012-08-13  1:34   ` [PATCH 3/5] strcat.3: ffix David Prévot
@ 2012-08-13  1:34   ` David Prévot
       [not found]     ` <1344821668-11324-5-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2012-08-13  1:34   ` [PATCH 5/5] migrate_pages.2: tfix David Prévot
  2012-08-13  1:55   ` Some typo and formatting fix Mike Frysinger
  5 siblings, 1 reply; 13+ messages in thread
From: David Prévot @ 2012-08-13  1:34 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

---
 man3/strcpy.3 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man3/strcpy.3 b/man3/strcpy.3
index 0a222dd..0664335 100644
--- a/man3/strcpy.3
+++ b/man3/strcpy.3
@@ -116,7 +116,7 @@ One valid (and intended) use of
 is to copy a C string to a fixed-length buffer
 while ensuring both that the buffer is not overflowed
 and that unused bytes in the target buffer are zeroed out
-(perhaps to prevent information leaks if the buffer is to
+(perhaps to prevent information leaks if the buffer is to be
 written to media or transmitted to another process via an
 interprocess communication technique).
 
-- 
1.7.10.4

--
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] 13+ messages in thread

* [PATCH 5/5] migrate_pages.2: tfix
       [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
                     ` (3 preceding siblings ...)
  2012-08-13  1:34   ` [PATCH 4/5] strcpy.3: tfix David Prévot
@ 2012-08-13  1:34   ` David Prévot
       [not found]     ` <1344821668-11324-6-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2012-08-13  1:55   ` Some typo and formatting fix Mike Frysinger
  5 siblings, 1 reply; 13+ messages in thread
From: David Prévot @ 2012-08-13  1:34 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

---
 man2/migrate_pages.2 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/migrate_pages.2 b/man2/migrate_pages.2
index 47615bf..9c7416e 100644
--- a/man2/migrate_pages.2
+++ b/man2/migrate_pages.2
@@ -87,7 +87,7 @@ privilege.
 .SH "RETURN VALUE"
 On success
 .BR migrate_pages ()
-returns the number of pages that cold not be moved
+returns the number of pages that could not be moved
 (i.e., a return of zero means that all pages were successfully moved).
 On error, it returns \-1, and sets
 .I errno
-- 
1.7.10.4

--
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] 13+ messages in thread

* Re: Some typo and formatting fix
       [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
                     ` (4 preceding siblings ...)
  2012-08-13  1:34   ` [PATCH 5/5] migrate_pages.2: tfix David Prévot
@ 2012-08-13  1:55   ` Mike Frysinger
       [not found]     ` <201208122155.39478.vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
  5 siblings, 1 reply; 13+ messages in thread
From: Mike Frysinger @ 2012-08-13  1:55 UTC (permalink / raw)
  To: David Prévot
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: Text/Plain, Size: 261 bytes --]

On Sunday 12 August 2012 21:34:23 David Prévot wrote:
> Here are some small issue spotted during the ongoing translation
> update. I'm not totally sure for the 4th one, but it seems there
> is something to fix anyway.

4th one looks correct to me
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

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

Thanks David. Applied!

On Mon, Aug 13, 2012 at 3:34 AM, David Prévot <taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote:
> ---
>  man2/ptrace.2 |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man2/ptrace.2 b/man2/ptrace.2
> index efaf597..3f82d64 100644
> --- a/man2/ptrace.2
> +++ b/man2/ptrace.2
> @@ -1785,7 +1785,7 @@ to return to userspace with the error
>  .BR EINTR .
>  In this particular case, the program reacted to
>  .B EINTR
> -by checking ithe current time, and then executing
> +by checking the current time, and then executing
>  .BR epoll_wait (2)
>  again.
>  (Programs which do not expect such "stray"
> --
> 1.7.10.4
>
> --
> 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



-- 
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] 13+ messages in thread

* Re: [PATCH 2/5] readdir.3: ffix
       [not found]     ` <1344821668-11324-3-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2012-08-13  7:23       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 13+ messages in thread
From: Michael Kerrisk (man-pages) @ 2012-08-13  7:23 UTC (permalink / raw)
  To: David Prévot; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Applied!

On Mon, Aug 13, 2012 at 3:34 AM, David Prévot <taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote:
> ---
>  man3/readdir.3 |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man3/readdir.3 b/man3/readdir.3
> index 0660efd..90f2ff1 100644
> --- a/man3/readdir.3
> +++ b/man3/readdir.3
> @@ -227,7 +227,7 @@ as follows:
>  .nf
>
>  name_max = pathconf(dirpath, _PC_NAME_MAX);
> -if (name_max == \-1)        /* Limit not defined, or error */
> +if (name_max == \-1)         /* Limit not defined, or error */
>      name_max = 255;         /* Take a guess */
>  len = offsetof(struct dirent, d_name) + name_max + 1;
>  entryp = malloc(len);
> --
> 1.7.10.4
>
> --
> 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



-- 
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] 13+ messages in thread

* Re: [PATCH 3/5] strcat.3: ffix
       [not found]     ` <1344821668-11324-4-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2012-08-13  7:24       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 13+ messages in thread
From: Michael Kerrisk (man-pages) @ 2012-08-13  7:24 UTC (permalink / raw)
  To: David Prévot; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Applied!

On Mon, Aug 13, 2012 at 3:34 AM, David Prévot <taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote:
> ---
>  man3/strcat.3 |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man3/strcat.3 b/man3/strcat.3
> index ef53641..a245283 100644
> --- a/man3/strcat.3
> +++ b/man3/strcat.3
> @@ -108,7 +108,7 @@ Some systems (the BSDs, Solaris, and others) provide the following function:
>  This function appends the null-terminated string
>  .I src
>  to the string
> -.I dest,
> +.IR dest ,
>  copying at most
>  .IR "size\-strlen(dest)\-1"
>  from
> --
> 1.7.10.4
>



-- 
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] 13+ messages in thread

* Re: [PATCH 4/5] strcpy.3: tfix
       [not found]     ` <1344821668-11324-5-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2012-08-13  7:25       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 13+ messages in thread
From: Michael Kerrisk (man-pages) @ 2012-08-13  7:25 UTC (permalink / raw)
  To: David Prévot; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Applied!

On Mon, Aug 13, 2012 at 3:34 AM, David Prévot <taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote:
> ---
>  man3/strcpy.3 |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man3/strcpy.3 b/man3/strcpy.3
> index 0a222dd..0664335 100644
> --- a/man3/strcpy.3
> +++ b/man3/strcpy.3
> @@ -116,7 +116,7 @@ One valid (and intended) use of
>  is to copy a C string to a fixed-length buffer
>  while ensuring both that the buffer is not overflowed
>  and that unused bytes in the target buffer are zeroed out
> -(perhaps to prevent information leaks if the buffer is to
> +(perhaps to prevent information leaks if the buffer is to be
>  written to media or transmitted to another process via an
>  interprocess communication technique).
>
> --
> 1.7.10.4
>



-- 
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] 13+ messages in thread

* Re: [PATCH 5/5] migrate_pages.2: tfix
       [not found]     ` <1344821668-11324-6-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2012-08-13  7:26       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 13+ messages in thread
From: Michael Kerrisk (man-pages) @ 2012-08-13  7:26 UTC (permalink / raw)
  To: David Prévot; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Applied!

On Mon, Aug 13, 2012 at 3:34 AM, David Prévot <taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org> wrote:
> ---
>  man2/migrate_pages.2 |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man2/migrate_pages.2 b/man2/migrate_pages.2
> index 47615bf..9c7416e 100644
> --- a/man2/migrate_pages.2
> +++ b/man2/migrate_pages.2
> @@ -87,7 +87,7 @@ privilege.
>  .SH "RETURN VALUE"
>  On success
>  .BR migrate_pages ()
> -returns the number of pages that cold not be moved
> +returns the number of pages that could not be moved
>  (i.e., a return of zero means that all pages were successfully moved).
>  On error, it returns \-1, and sets
>  .I errno
> --
> 1.7.10.4
>
> --
> 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



-- 
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] 13+ messages in thread

* Re: Some typo and formatting fix
       [not found]     ` <201208122155.39478.vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
@ 2012-08-13  7:27       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 13+ messages in thread
From: Michael Kerrisk (man-pages) @ 2012-08-13  7:27 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: David Prévot, linux-man-u79uwXL29TY76Z2rM5mHXA

On Mon, Aug 13, 2012 at 3:55 AM, Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org> wrote:
> On Sunday 12 August 2012 21:34:23 David Prévot wrote:
>> Here are some small issue spotted during the ongoing translation
>> update. I'm not totally sure for the 4th one, but it seems there
>> is something to fix anyway.
>
> 4th one looks correct to me

Yes, it's correct.

Thanks for all the patches, David.

Cheers,

Michael
-- 
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] 13+ messages in thread

end of thread, other threads:[~2012-08-13  7:27 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-13  1:34 Some typo and formatting fix David Prévot
     [not found] ` <1344821668-11324-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2012-08-13  1:34   ` [PATCH 1/5] ptrace.2: tfix David Prévot
     [not found]     ` <1344821668-11324-2-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2012-08-13  7:22       ` Michael Kerrisk (man-pages)
2012-08-13  1:34   ` [PATCH 2/5] readdir.3: ffix David Prévot
     [not found]     ` <1344821668-11324-3-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2012-08-13  7:23       ` Michael Kerrisk (man-pages)
2012-08-13  1:34   ` [PATCH 3/5] strcat.3: ffix David Prévot
     [not found]     ` <1344821668-11324-4-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2012-08-13  7:24       ` Michael Kerrisk (man-pages)
2012-08-13  1:34   ` [PATCH 4/5] strcpy.3: tfix David Prévot
     [not found]     ` <1344821668-11324-5-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2012-08-13  7:25       ` Michael Kerrisk (man-pages)
2012-08-13  1:34   ` [PATCH 5/5] migrate_pages.2: tfix David Prévot
     [not found]     ` <1344821668-11324-6-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2012-08-13  7:26       ` Michael Kerrisk (man-pages)
2012-08-13  1:55   ` Some typo and formatting fix Mike Frysinger
     [not found]     ` <201208122155.39478.vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
2012-08-13  7:27       ` 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.