sculpt_manager: remove inactive use_11n attribute

This is a follow-up commit to #4506 where the inactive 'use_11n'
attribute was already removed.

Issue #5262.
This commit is contained in:
Josef Söntgen 2024-07-30 16:59:42 +02:00 committed by Christian Helmuth
parent 978e82e893
commit 572d406d66
2 changed files with 2 additions and 3 deletions

View File

@ -1,3 +1,3 @@
<wifi connected_scan_interval="0" scan_interval="5" use_11n="no" rfkill="no" verbose="no">
<wifi connected_scan_interval="0" scan_interval="5" rfkill="no" verbose="no">
<network ssid="" protection="NONE" passphrase=""/>
</wifi>

View File

@ -144,7 +144,6 @@ struct Sculpt::Network : Noncopyable
xml.attribute("connected_scan_interval", 0U);
xml.attribute("scan_interval", 10U);
xml.attribute("update_quality_interval", 30U);
xml.attribute("use_11n", false);
xml.attribute("verbose_state", false);
xml.attribute("verbose", false);
@ -175,7 +174,7 @@ struct Sculpt::Network : Noncopyable
xml.attribute("connected_scan_interval", 0U);
xml.attribute("scan_interval", 10U);
xml.attribute("use_11n", false);
xml.attribute("update_quality_interval", 30U);
xml.attribute("verbose_state", false);
xml.attribute("verbose", false);