pfctl: Remove unused variable

MFC after:	2 weeks
Sponsored by:	Rubicon Communications, LLC ("Netgate")
This commit is contained in:
Kristof Provost 2021-09-30 17:25:45 +02:00
parent 824bbb9a40
commit 90dedf0fef
2 changed files with 0 additions and 2 deletions

View File

@ -858,7 +858,6 @@ pfa_anchor : '{'
/* steping into a brace anchor */
pf->asd++;
pf->bn++;
pf->brace = 1;
/* create a holding ruleset in the root */
snprintf(ta, PF_ANCHOR_NAME_SIZE, "_%d", pf->bn);

View File

@ -82,7 +82,6 @@ struct pfctl {
int loadopt;
int asd; /* anchor stack depth */
int bn; /* brace number */
int brace;
int tdirty; /* kernel dirty */
#define PFCTL_ANCHOR_STACK_DEPTH 64
struct pfctl_anchor *astack[PFCTL_ANCHOR_STACK_DEPTH];