summaryrefslogtreecommitdiff
path: root/share/man/man9
diff options
context:
space:
mode:
authorKenjiro Cho <kjc@cvs.openbsd.org>2002-05-31 09:52:59 +0000
committerKenjiro Cho <kjc@cvs.openbsd.org>2002-05-31 09:52:59 +0000
commit23c764dea356800d33d5ee45822da12470a0d6d1 (patch)
tree029bad08b703d19a6143a6efe03b425c80d4fe25 /share/man/man9
parentc1ca08fe37eb119e7f2c1aee3555f1a546c29006 (diff)
sync with KAME.
- remove space at EOL - typo: retuen -> return
Diffstat (limited to 'share/man/man9')
-rw-r--r--share/man/man9/altq.98
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/altq.9 b/share/man/man9/altq.9
index 631cc2552af..5d76c183b19 100644
--- a/share/man/man9/altq.9
+++ b/share/man/man9/altq.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: altq.9,v 1.6 2001/07/13 05:00:14 kjc Exp $
+.\" $OpenBSD: altq.9,v 1.7 2002/05/31 09:52:58 kjc Exp $
.\"
.\" Copyright (C) 2001
.\" Sony Computer Science Laboratories Inc. All rights reserved.
@@ -62,7 +62,7 @@ The
.Nm
system is a framework to manage queueing disciplines on network
interfaces.
-.Nm
+.Nm
introduces new macros to manipulate output queues.
The output queue macros are used to abstract queue operations and not to
touch the internal fields of the output queue structure.
@@ -234,7 +234,7 @@ queue a packet
drop (and free) a packet if the enqueue operation fails
.El
If the enqueue operation fails,
-.Fa error
+.Fa error
is set to
.Dv ENOBUFS .
.Fa mbuf
@@ -268,7 +268,7 @@ looks as follows:
| error);
IF_DROP(&ifp->if_snd); | if (error != 0) {
splx(s); | splx(s);
- senderr(ENOBUFS); | retuen (error);
+ senderr(ENOBUFS); | return (error);
} | }
IF_ENQUEUE(&ifp->if_snd, m); |
ifp->if_obytes += | ifp->if_obytes += len;