* [PATCH] iptables manpage: Fix missing space for recent match --mask option
@ 2013-04-06 9:03 Mart Frauenlob
2013-04-06 9:20 ` Mart Frauenlob
0 siblings, 1 reply; 3+ messages in thread
From: Mart Frauenlob @ 2013-04-06 9:03 UTC (permalink / raw)
To: netfilter-devel
[-- Attachment #1: Type: text/plain, Size: 43 bytes --]
As the subject says...
Best regards
Mart
[-- Attachment #2: iptables-manpage-Fix-missing-space-for-recent-match.patch --]
[-- Type: text/plain, Size: 793 bytes --]
>From 937309f37f9000f18f88c191923192c5d31a07e8 Mon Sep 17 00:00:00 2001
From: Mart Frauenlob <mart.frauenlob@chello.at>
Date: Sat, 6 Apr 2013 10:49:47 +0200
Subject: [PATCH 2/2] iptables manpage: Fix missing space for recent match --mask option.
---
extensions/libxt_recent.man | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/extensions/libxt_recent.man b/extensions/libxt_recent.man
index 8e6a8e9..05ae4fa 100644
--- a/extensions/libxt_recent.man
+++ b/extensions/libxt_recent.man
@@ -24,7 +24,7 @@ is the default.
\fB\-\-rdest\fP
Match/save the destination address of each packet in the recent list table.
.TP
-\fB\-\-mask\fPnetmask
+\fB\-\-mask\fP \fnetmask\fP
Netmask that will be applied to this recent list.
.TP
[\fB!\fP] \fB\-\-rcheck\fP
--
1.7.2.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] iptables manpage: Fix missing space for recent match --mask option
2013-04-06 9:03 [PATCH] iptables manpage: Fix missing space for recent match --mask option Mart Frauenlob
@ 2013-04-06 9:20 ` Mart Frauenlob
2013-04-06 11:04 ` Pablo Neira Ayuso
0 siblings, 1 reply; 3+ messages in thread
From: Mart Frauenlob @ 2013-04-06 9:20 UTC (permalink / raw)
To: netfilter-devel
[-- Attachment #1: Type: text/plain, Size: 187 bytes --]
On 06.04.2013 11:04, netfilter-devel-owner@vger.kernel.org wrote:
> As the subject says...
>
> Best regards
>
> Mart
lol damn, must been blind, now I added an extra space :/
removed...
[-- Attachment #2: iptables-manpage-Fix-missing-space-for-recent-match.patch --]
[-- Type: text/plain, Size: 792 bytes --]
>From 937309f37f9000f18f88c191923192c5d31a07e8 Mon Sep 17 00:00:00 2001
From: Mart Frauenlob <mart.frauenlob@chello.at>
Date: Sat, 6 Apr 2013 10:49:47 +0200
Subject: [PATCH 2/2] iptables manpage: Fix missing space for recent match --mask option.
---
extensions/libxt_recent.man | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/extensions/libxt_recent.man b/extensions/libxt_recent.man
index 8e6a8e9..05ae4fa 100644
--- a/extensions/libxt_recent.man
+++ b/extensions/libxt_recent.man
@@ -24,7 +24,7 @@ is the default.
\fB\-\-rdest\fP
Match/save the destination address of each packet in the recent list table.
.TP
-\fB\-\-mask\fPnetmask
+\fB\-\-mask\fP \fnetmask\fP
Netmask that will be applied to this recent list.
.TP
[\fB!\fP] \fB\-\-rcheck\fP
--
1.7.2.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] iptables manpage: Fix missing space for recent match --mask option
2013-04-06 9:20 ` Mart Frauenlob
@ 2013-04-06 11:04 ` Pablo Neira Ayuso
0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira Ayuso @ 2013-04-06 11:04 UTC (permalink / raw)
To: Mart Frauenlob; +Cc: netfilter-devel
On Sat, Apr 06, 2013 at 11:20:51AM +0200, Mart Frauenlob wrote:
> On 06.04.2013 11:04, netfilter-devel-owner@vger.kernel.org wrote:
> >As the subject says...
> >
> >Best regards
> >
> >Mart
>
> lol damn, must been blind, now I added an extra space :/
> removed...
And missed initial \fI in netmask, but no problem, I fixed it and
applied this to master. Thanks.
> From 937309f37f9000f18f88c191923192c5d31a07e8 Mon Sep 17 00:00:00 2001
> From: Mart Frauenlob <mart.frauenlob@chello.at>
> Date: Sat, 6 Apr 2013 10:49:47 +0200
> Subject: [PATCH 2/2] iptables manpage: Fix missing space for recent match --mask option.
>
> ---
> extensions/libxt_recent.man | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/extensions/libxt_recent.man b/extensions/libxt_recent.man
> index 8e6a8e9..05ae4fa 100644
> --- a/extensions/libxt_recent.man
> +++ b/extensions/libxt_recent.man
> @@ -24,7 +24,7 @@ is the default.
> \fB\-\-rdest\fP
> Match/save the destination address of each packet in the recent list table.
> .TP
> -\fB\-\-mask\fPnetmask
> +\fB\-\-mask\fP \fnetmask\fP
> Netmask that will be applied to this recent list.
> .TP
> [\fB!\fP] \fB\-\-rcheck\fP
> --
> 1.7.2.5
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-06 11:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-06 9:03 [PATCH] iptables manpage: Fix missing space for recent match --mask option Mart Frauenlob
2013-04-06 9:20 ` Mart Frauenlob
2013-04-06 11:04 ` Pablo Neira Ayuso
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).