wgengine/router: fix ip rule restoration

Fixes #10857

Signed-off-by: Jason Barnett <J@sonBarnett.com>
This commit is contained in:
Jason Barnett 2024-01-15 07:17:13 -07:00 committed by KevinLiang10
parent 52f16b5d10
commit 4d668416b8
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ func (r *linuxRouter) onIPRuleDeleted(table uint8, priority uint32) {
// Not our rule.
return
}
if !r.ruleRestorePending.Swap(true) {
if r.ruleRestorePending.Swap(true) {
// Another timer is already pending.
return
}