Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Aug 2021 07:54:11 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 809ad8170aa9 - main - ipfw(8): Fix a typo in an error message
Message-ID:  <202108110754.17B7sB9A059886@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=809ad8170aa97e570ef5e1e414b4c25e4b58044c

commit 809ad8170aa97e570ef5e1e414b4c25e4b58044c
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2021-08-11 07:53:01 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2021-08-11 07:53:01 +0000

    ipfw(8): Fix a typo in an error message
    
    - s/suport/support/
    
    MFC after:      5 days
---
 sbin/ipfw/ipfw2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sbin/ipfw/ipfw2.c b/sbin/ipfw/ipfw2.c
index fb1d9a4a180b..deb46fc64e00 100644
--- a/sbin/ipfw/ipfw2.c
+++ b/sbin/ipfw/ipfw2.c
@@ -4127,7 +4127,7 @@ chkarg:
 		        action->arg1 = strtoul(*av, NULL, 10);
 			if (sysctlbyname("net.fibs", &numfibs, &intsize,
 			    NULL, 0) == -1)
-				errx(EX_DATAERR, "fibs not suported.\n");
+				errx(EX_DATAERR, "fibs not supported.\n");
 			if (action->arg1 >= numfibs)  /* Temporary */
 				errx(EX_DATAERR, "fib too large.\n");
 			/* Add high-order bit to fib to make room for tablearg*/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108110754.17B7sB9A059886>