diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-11-21 09:10:31 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-11-21 09:10:31 +0000 |
| commit | 361492bfb22dc57ac311cda02bf3fc75ea5b52b2 (patch) | |
| tree | d2a048b6c321dcf2c154a4c065d751d1e9374bc5 | |
| parent | d941fde3508d7e63d0270649c0c61016f19e23ac (diff) | |
pfctl(8): Fix a typo in an error message
- s/registeration/registration/
MFC after: 5 days
| -rw-r--r-- | sbin/pfctl/pfctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } |
