aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorKristof Provost <kp@FreeBSD.org>2025-02-12 16:41:18 +0000
committerKristof Provost <kp@FreeBSD.org>2025-02-19 10:41:10 +0000
commit81dc007a00a9d160653398afc80a58725747d24d (patch)
tree616469508bcb2edd6f4db93a7e5f10a73f5c57f2 /sbin
parent2514ac810dc992c6a9ae6854b9a06bba6eb10782 (diff)
pfctl: improve warnings for limits
If pfctl cannot set a limit in the kernel, print the name of the limit and the requested value. OK henning@ Obtained from: OpenBSD, bluhm <bluhm@openbsd.org>, beb5ed50a7 Sponsored by: Rubicon Communications, LLC ("Netgate")
Diffstat (limited to 'sbin')
-rw-r--r--sbin/pfctl/pfctl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c
index e05c96a252fc..fd76a1926457 100644
--- a/sbin/pfctl/pfctl.c
+++ b/sbin/pfctl/pfctl.c
@@ -2470,9 +2470,11 @@ pfctl_load_limit(struct pfctl *pf, unsigned int index, unsigned int limit)
{
if (pfctl_set_limit(pf->h, index, limit)) {
if (errno == EBUSY)
- warnx("Current pool size exceeds requested hard limit");
+ warnx("Current pool size exceeds requested %s limit %u",
+ pf_limits[index].name, limit);
else
- warnx("cannot set '%s' limit", pf_limits[index].name);
+ warnx("Cannot set %s limit to %u",
+ pf_limits[index].name, limit);
return (1);
}
return (0);