mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
mac_bsdextended: Remove \n from sysctl descriptions
sysctl(8) prints a newline after the description; the description should not end with one itself. Sponsored by: The FreeBSD Foundation (cherry picked from commit 6b62e00da4ad0624fce5e6f0b5b39a6f44c8ba60)
This commit is contained in:
parent
6890e1e793
commit
28092a8bc7
1 changed files with 3 additions and 3 deletions
|
|
@ -88,11 +88,11 @@ static int rule_slots = 0;
|
|||
static int rule_version = MB_VERSION;
|
||||
|
||||
SYSCTL_INT(_security_mac_bsdextended, OID_AUTO, rule_count, CTLFLAG_RD,
|
||||
&rule_count, 0, "Number of defined rules\n");
|
||||
&rule_count, 0, "Number of defined rules");
|
||||
SYSCTL_INT(_security_mac_bsdextended, OID_AUTO, rule_slots, CTLFLAG_RD,
|
||||
&rule_slots, 0, "Number of used rule slots\n");
|
||||
&rule_slots, 0, "Number of used rule slots");
|
||||
SYSCTL_INT(_security_mac_bsdextended, OID_AUTO, rule_version, CTLFLAG_RD,
|
||||
&rule_version, 0, "Version number for API\n");
|
||||
&rule_version, 0, "Version number for API");
|
||||
|
||||
/*
|
||||
* This is just used for logging purposes, eventually we would like to log
|
||||
|
|
|
|||
Loading…
Reference in a new issue