summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-08-11 22:24:05 +0200
committerChristian Breunig <christian@breunig.cc>2023-08-11 22:26:06 +0200
commit63a8d17b89597e990e44f5b0111419778917e689 (patch)
treeab00556cda70a91d62af8261ae93b1202c947e5d /python
parent482f7e352272b6ec16ba5d1ac7d9d7ea51d10f1d (diff)
downloadvyos-1x-63a8d17b89597e990e44f5b0111419778917e689.tar.gz
vyos-1x-63a8d17b89597e990e44f5b0111419778917e689.zip
ipv6: T5464: use proper XML default for DAD transmits
This is only a cosmetic change so that the default value is properly retrieved from the defaultValue XML node.
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig/interface.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py
index 75c5f27a9..6e85b7a9d 100644
--- a/python/vyos/ifconfig/interface.py
+++ b/python/vyos/ifconfig/interface.py
@@ -1553,8 +1553,7 @@ class Interface(Control):
# IPv6 Duplicate Address Detection (DAD) tries
tmp = dict_search('ipv6.dup_addr_detect_transmits', config)
- value = tmp if (tmp != None) else '1'
- self.set_ipv6_dad_messages(value)
+ self.set_ipv6_dad_messages(tmp)
# Delete old IPv6 EUI64 addresses before changing MAC
for addr in (dict_search('ipv6.address.eui64_old', config) or []):