ipfw(8): Fix a typo in an error message

- s/suport/support/

MFC after:	5 days
This commit is contained in:
Gordon Bergling 2021-08-11 09:53:01 +02:00
parent 67f508db84
commit 809ad8170a

View file

@ -4127,7 +4127,7 @@ compile_rule(char *av[], uint32_t *rbuf, int *rbufsize, struct tidx *tstate)
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*/