wgengine/router: fix ip rule restoration

Fixes #10857

Signed-off-by: Jason Barnett <J@sonBarnett.com>
main
Jason Barnett 2 years ago committed by KevinLiang10
parent 52f16b5d10
commit 4d668416b8
  1. 2
      wgengine/router/router_linux.go

@ -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
}

Loading…
Cancel
Save