1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-21 02:48:46 +00:00

Spelling corrections for dummynet.

Reviewed by:	des,luigi
This commit is contained in:
Ruslan Ermilov 1999-06-02 05:59:48 +00:00
parent 5bba1d262a
commit 06e70c77bb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47691

View File

@ -20,7 +20,7 @@
#ifndef lint
static const char rcsid[] =
"$Id$";
"$Id: ipfw.c,v 1.67 1999/05/29 08:12:38 kris Exp $";
#endif /* not lint */
@ -579,7 +579,7 @@ show_usage(const char *fmt, ...)
" [pipe] list [number ...]\n"
" [pipe] show [number ...]\n"
" zero [number ...]\n"
" pipe number config [pipeconfig\n"
" pipe number config [pipeconfig]\n"
" rule: action proto src dst extras...\n"
" action:\n"
" {allow|permit|accept|pass|deny|drop|reject|unreach code|\n"
@ -597,7 +597,7 @@ show_usage(const char *fmt, ...)
" tcpflags [!]{syn|fin|rst|ack|psh|urg},...\n"
" ipoptions [!]{ssrr|lsrr|rr|ts},...\n"
" icmptypes {type[,type]}...\n"
" pipecfg:\n"
" pipeconfig:\n"
" {bw|bandwidth} <number>{bit/s|Kbit/s|Mbit/s|Bytes/s|KBytes/s|MBytes/s}\n"
" delay <milliseconds>\n"
" queue <size>{packets|Bytes|KBytes}\n"
@ -1457,7 +1457,8 @@ ipfw_main(ac,av)
err(EX_UNAVAILABLE, "setsockopt(IP_%s_FLUSH)",
do_pipe ? "DUMMYNET" : "FW");
if (!do_quiet)
printf("Flushed all rules.\n");
printf("Flushed all %s.\n",
do_pipe ? "pipes" : "rules");
}
} else if (!strncmp(*av, "zero", strlen(*av))) {
zero(ac,av);