From 361492bfb22dc57ac311cda02bf3fc75ea5b52b2 Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Fri, 21 Nov 2025 10:10:31 +0100 Subject: [PATCH] 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 02d6c9c84a3..ae3599b9e4e 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"); }