aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2000-03-26 15:24:53 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2000-03-26 15:24:53 +0000
commit46a32e616a6c4e382460a47ed2d3c1cdbbd8212e (patch)
tree910b2884ec5a009bc5c15ef0987c0a2ad5ab3281
parent956f31353c2bd45416298ed67185a4efa0aa0da6 (diff)
Notes
-rw-r--r--share/man/man4/netgraph.42
-rw-r--r--sys/modules/netgraph/netgraph/netgraph.42
-rw-r--r--sys/net/if_vlan.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man4/netgraph.4 b/share/man/man4/netgraph.4
index b4c0addcd9b3..99c5e617db55 100644
--- a/share/man/man4/netgraph.4
+++ b/share/man/man4/netgraph.4
@@ -300,7 +300,7 @@ Three other methods are also supported by all nodes:
An mbuf chain is passed to the node.
The node is notified on which hook the data arrived,
and can use this information in its processing decision.
-The node must must always
+The node must always
.Fn m_freem
the mbuf chain on completion or error, or pass it on to another node
(or kernel module) which will then be responsible for freeing it.
diff --git a/sys/modules/netgraph/netgraph/netgraph.4 b/sys/modules/netgraph/netgraph/netgraph.4
index b4c0addcd9b3..99c5e617db55 100644
--- a/sys/modules/netgraph/netgraph/netgraph.4
+++ b/sys/modules/netgraph/netgraph/netgraph.4
@@ -300,7 +300,7 @@ Three other methods are also supported by all nodes:
An mbuf chain is passed to the node.
The node is notified on which hook the data arrived,
and can use this information in its processing decision.
-The node must must always
+The node must always
.Fn m_freem
the mbuf chain on completion or error, or pass it on to another node
(or kernel module) which will then be responsible for freeing it.
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c
index 7e6194975e9b..19d85b012dce 100644
--- a/sys/net/if_vlan.c
+++ b/sys/net/if_vlan.c
@@ -36,7 +36,7 @@
* we need to pretend to be enough of an Ethernet implementation
* to make arp work. The way we do this is by telling everyone
* that we are an Ethernet, and then catch the packets that
- * ether_output() left on our output queue queue when it calls
+ * ether_output() left on our output queue when it calls
* if_start(), rewrite them for use by the real outgoing interface,
* and ask it to send them.
*