mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Instead of doing an no-op (|= 0), actually clear the flags in
acl_clear_flags_np. MFC after: 2 weeks
This commit is contained in:
parent
8c092157f4
commit
34103b3cac
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ acl_clear_flags_np(acl_flagset_t flagset_d)
|
|||
return (-1);
|
||||
}
|
||||
|
||||
*flagset_d |= 0;
|
||||
*flagset_d = 0;
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue