diff options
-rw-r--r-- | config/default.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/default.go b/config/default.go index 4c5cc4b0..df57103b 100644 --- a/config/default.go +++ b/config/default.go @@ -37,7 +37,7 @@ func SetDefaultConfigValues(md toml.MetaData, bt *Bgp) { bt.NeighborList[i].Timers.KeepaliveInterval = bt.NeighborList[i].Timers.HoldTime / 3 } - if _, ok := n.attributes["NeighborList.Timers.IdleHoldTImeAfterReset"]; !ok { + if _, ok := n.attributes["NeighborList.Timers.IdleHoldTimeAfterReset"]; !ok { bt.NeighborList[i].Timers.IdleHoldTimeAfterReset = float64(DEFAULT_IDLE_HOLDTIME_AFTER_RESET) } } |