All of lore.kernel.org
 help / color / mirror / Atom feed
* One documentation fix
@ 2011-04-06 11:24 Jan Engelhardt
  2011-04-06 11:24 ` [PATCH] doc: avoid duplicate entries in manpage Jan Engelhardt
  2011-04-12 14:04 ` One documentation fix Patrick McHardy
  0 siblings, 2 replies; 3+ messages in thread
From: Jan Engelhardt @ 2011-04-06 11:24 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel


The following changes since commit 6a86854bf91227a70392fc2665ed4f99af0229e3:

  convert ip6?tables-multi to actually use their own header files (2011-04-05 12:43:26 +0200)

are available in the git repository at:
  git://dev.medozas.de/iptables master

Jan Engelhardt (1):
      doc: avoid duplicate entries in manpage

 extensions/GNUmakefile.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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

* [PATCH] doc: avoid duplicate entries in manpage
  2011-04-06 11:24 One documentation fix Jan Engelhardt
@ 2011-04-06 11:24 ` Jan Engelhardt
  2011-04-12 14:04 ` One documentation fix Patrick McHardy
  1 sibling, 0 replies; 3+ messages in thread
From: Jan Engelhardt @ 2011-04-06 11:24 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel

Commit v1.4.9-35-gd4105ad changed from [A-Z] and [a-z] to use
[[:alnum:]], which unfortunately drew matches into the target section,
and targets into the match section. [[:upper:]] and [[:lower:]] should
have been used instead, of course.

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 extensions/GNUmakefile.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in
index 1419d76..0e562fb 100644
--- a/extensions/GNUmakefile.in
+++ b/extensions/GNUmakefile.in
@@ -155,8 +155,8 @@ initext6.c: .initext6.dd
 #
 #	Manual pages
 #
-ex_matches = $(sort $(shell echo $(1) | LC_ALL=POSIX grep -Eo '\b[[:alnum:]_]+\b'))
-ex_targets = $(sort $(shell echo $(1) | LC_ALL=POSIX grep -Eo '\b[[:alnum:]_]+\b'))
+ex_matches = $(sort $(shell echo $(1) | LC_ALL=POSIX grep -Eo '\b[[:lower:][:digit:]_]+\b'))
+ex_targets = $(sort $(shell echo $(1) | LC_ALL=POSIX grep -Eo '\b[[:upper:][:digit:]_]+\b'))
 man_run    = \
 	${AM_VERBOSE_GEN} \
 	for ext in $(1); do \
-- 
1.7.1


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

* Re: One documentation fix
  2011-04-06 11:24 One documentation fix Jan Engelhardt
  2011-04-06 11:24 ` [PATCH] doc: avoid duplicate entries in manpage Jan Engelhardt
@ 2011-04-12 14:04 ` Patrick McHardy
  1 sibling, 0 replies; 3+ messages in thread
From: Patrick McHardy @ 2011-04-12 14:04 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On 06.04.2011 13:24, Jan Engelhardt wrote:
> The following changes since commit 6a86854bf91227a70392fc2665ed4f99af0229e3:
> 
>   convert ip6?tables-multi to actually use their own header files (2011-04-05 12:43:26 +0200)
> 
> are available in the git repository at:
>   git://dev.medozas.de/iptables master
> 
> Jan Engelhardt (1):
>       doc: avoid duplicate entries in manpage


Pulled, thanks Jan.

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

end of thread, other threads:[~2011-04-12 14:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-06 11:24 One documentation fix Jan Engelhardt
2011-04-06 11:24 ` [PATCH] doc: avoid duplicate entries in manpage Jan Engelhardt
2011-04-12 14:04 ` One documentation fix Patrick McHardy

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.