Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Nov 2025 09:10:55 +0000
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: 361492bfb22d - main - pfctl(8): Fix a typo in an error message
Message-ID:  <69202c9f.35004.47c65b9@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=361492bfb22dc57ac311cda02bf3fc75ea5b52b2

commit 361492bfb22dc57ac311cda02bf3fc75ea5b52b2
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-11-21 09:10:31 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
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");
 	}


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69202c9f.35004.47c65b9>