The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=361492bfb22dc57ac311cda02bf3fc75ea5b52b2
commit 361492bfb22dc57ac311cda02bf3fc75ea5b52b2 Author: Gordon Bergling <[email protected]> AuthorDate: 2025-11-21 09:10:31 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-11-21 09:10:31 +0000 pfctl(8): Fix a typo in an error message - s/registeration/registration/ MFC after: 5 days --- sbin/pfctl/pfctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 02d6c9c84a32..ae3599b9e4e5 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -376,7 +376,7 @@ pfctl_enable(int dev, int opts) if (ret == EEXIST) errx(1, "pf already enabled"); else if (ret == ESRCH) - errx(1, "pfil registeration failed"); + errx(1, "pfil registration failed"); else errc(1, ret, "DIOCSTART"); }
