netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] libipt6_mh.man: Correct command to display named mh types
@ 2013-04-09  7:14 Mart Frauenlob
  2013-04-09  8:41 ` Patrick McHardy
  0 siblings, 1 reply; 4+ messages in thread
From: Mart Frauenlob @ 2013-04-09  7:14 UTC (permalink / raw)
  To: netfilter-devel

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

Hello,

ip6tables -p ipv6-mh -h

does not display the named mh types as the man page says.
ip6tables -m mh -h does.

This patch updates the man page accordingly.

Best regards

Mart

[-- Attachment #2: libip6t_mh-Correct-command-to-list-named-mh-types-in-man.patch --]
[-- Type: text/plain, Size: 655 bytes --]

>From 3df043fdd1ed58c0c07258e896e623a3ac06f69d Mon Sep 17 00:00:00 2001
From: Mart Frauenlob <mart.frauenlob@chello.at>
Date: Tue, 9 Apr 2013 09:04:17 +0200
Subject: [PATCH] libip6t_mh: Correct command to list named mh types in manpage.

---
 extensions/libip6t_mh.man |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/extensions/libip6t_mh.man b/extensions/libip6t_mh.man
index 4559e78..7106ef4 100644
--- a/extensions/libip6t_mh.man
+++ b/extensions/libip6t_mh.man
@@ -8,5 +8,5 @@ a numeric MH
 .IR type
 or one of the MH type names shown by the command
 .nf
- ip6tables \-p ipv6\-mh \-h
+ ip6tables \-m mh \-h
 .fi
-- 
1.7.2.5


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

* Re: [PATCH] libipt6_mh.man: Correct command to display named mh types
  2013-04-09  7:14 [PATCH] libipt6_mh.man: Correct command to display named mh types Mart Frauenlob
@ 2013-04-09  8:41 ` Patrick McHardy
  2013-04-09  9:40   ` Mart Frauenlob
  0 siblings, 1 reply; 4+ messages in thread
From: Patrick McHardy @ 2013-04-09  8:41 UTC (permalink / raw)
  To: Mart Frauenlob; +Cc: netfilter-devel

On Tue, Apr 09, 2013 at 09:14:33AM +0200, Mart Frauenlob wrote:
> Hello,
> 
> ip6tables -p ipv6-mh -h
> 
> does not display the named mh types as the man page says.
> ip6tables -m mh -h does.

ip6tables -p mh also does. So please update the manpage to correct
the protocol.

> 
> This patch updates the man page accordingly.
> 
> Best regards
> 
> Mart

> >From 3df043fdd1ed58c0c07258e896e623a3ac06f69d Mon Sep 17 00:00:00 2001
> From: Mart Frauenlob <mart.frauenlob@chello.at>
> Date: Tue, 9 Apr 2013 09:04:17 +0200
> Subject: [PATCH] libip6t_mh: Correct command to list named mh types in manpage.
> 
> ---
>  extensions/libip6t_mh.man |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/extensions/libip6t_mh.man b/extensions/libip6t_mh.man
> index 4559e78..7106ef4 100644
> --- a/extensions/libip6t_mh.man
> +++ b/extensions/libip6t_mh.man
> @@ -8,5 +8,5 @@ a numeric MH
>  .IR type
>  or one of the MH type names shown by the command
>  .nf
> - ip6tables \-p ipv6\-mh \-h
> + ip6tables \-m mh \-h
>  .fi
> -- 
> 1.7.2.5
> 


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

* Re: [PATCH] libipt6_mh.man: Correct command to display named mh types
  2013-04-09  8:41 ` Patrick McHardy
@ 2013-04-09  9:40   ` Mart Frauenlob
  2013-04-10 11:24     ` Patrick McHardy
  0 siblings, 1 reply; 4+ messages in thread
From: Mart Frauenlob @ 2013-04-09  9:40 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: netfilter-devel

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

On 09.04.2013 10:41, Patrick McHardy wrote:
> On Tue, Apr 09, 2013 at 09:14:33AM +0200, Mart Frauenlob wrote:
>> ip6tables -p ipv6-mh -h
>>
>> does not display the named mh types as the man page says.
>> ip6tables -m mh -h does.
>
> ip6tables -p mh also does. So please update the manpage to correct
> the protocol.
>

done

[-- Attachment #2: libip6t_mh-Correct-command-to-list-named-mh-types-in-man.patch --]
[-- Type: text/plain, Size: 655 bytes --]

>From 39f5a982e40201faa97810d200cbc2d9d848996e Mon Sep 17 00:00:00 2001
From: Mart Frauenlob <mart.frauenlob@chello.at>
Date: Tue, 9 Apr 2013 11:38:47 +0200
Subject: [PATCH] libip6t_mh: Correct command to list named mh types in manpage.

---
 extensions/libip6t_mh.man |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/extensions/libip6t_mh.man b/extensions/libip6t_mh.man
index 4559e78..8ec08c6 100644
--- a/extensions/libip6t_mh.man
+++ b/extensions/libip6t_mh.man
@@ -8,5 +8,5 @@ a numeric MH
 .IR type
 or one of the MH type names shown by the command
 .nf
- ip6tables \-p ipv6\-mh \-h
+ ip6tables \-p mh \-h
 .fi
-- 
1.7.2.5


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

* Re: [PATCH] libipt6_mh.man: Correct command to display named mh types
  2013-04-09  9:40   ` Mart Frauenlob
@ 2013-04-10 11:24     ` Patrick McHardy
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick McHardy @ 2013-04-10 11:24 UTC (permalink / raw)
  To: Mart Frauenlob; +Cc: netfilter-devel

On Tue, Apr 09, 2013 at 11:40:58AM +0200, Mart Frauenlob wrote:
> On 09.04.2013 10:41, Patrick McHardy wrote:
> >On Tue, Apr 09, 2013 at 09:14:33AM +0200, Mart Frauenlob wrote:
> >>ip6tables -p ipv6-mh -h
> >>
> >>does not display the named mh types as the man page says.
> >>ip6tables -m mh -h does.
> >
> >ip6tables -p mh also does. So please update the manpage to correct
> >the protocol.
> >
> 
> done

Applied, thanks.

> >From 39f5a982e40201faa97810d200cbc2d9d848996e Mon Sep 17 00:00:00 2001
> From: Mart Frauenlob <mart.frauenlob@chello.at>
> Date: Tue, 9 Apr 2013 11:38:47 +0200
> Subject: [PATCH] libip6t_mh: Correct command to list named mh types in manpage.
> 
> ---
>  extensions/libip6t_mh.man |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/extensions/libip6t_mh.man b/extensions/libip6t_mh.man
> index 4559e78..8ec08c6 100644
> --- a/extensions/libip6t_mh.man
> +++ b/extensions/libip6t_mh.man
> @@ -8,5 +8,5 @@ a numeric MH
>  .IR type
>  or one of the MH type names shown by the command
>  .nf
> - ip6tables \-p ipv6\-mh \-h
> + ip6tables \-p mh \-h
>  .fi
> -- 
> 1.7.2.5
> 


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

end of thread, other threads:[~2013-04-10 11:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-09  7:14 [PATCH] libipt6_mh.man: Correct command to display named mh types Mart Frauenlob
2013-04-09  8:41 ` Patrick McHardy
2013-04-09  9:40   ` Mart Frauenlob
2013-04-10 11:24     ` Patrick McHardy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).