diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-04 19:55:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 19:55:32 +0200 |
commit | 71030ad38014f4884a48df43fc4bfd54a4fd497a (patch) | |
tree | c625fc9c609646834590e3924fe53c71c7e8da32 /src | |
parent | a1ae080499319b02a0f757125ca000c9db4c8fbb (diff) | |
parent | dd94de1f5721a63dd0ed06060d0e3673fc1e80d7 (diff) | |
download | vyos-1x-71030ad38014f4884a48df43fc4bfd54a4fd497a.tar.gz vyos-1x-71030ad38014f4884a48df43fc4bfd54a4fd497a.zip |
Merge pull request #301 from alainlamar/T2208
wireless: T2208: bugfix: errors in the XML and Python file
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/interfaces-wireless.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/interfaces-wireless.py b/src/conf_mode/interfaces-wireless.py index b6e62b0aa..9714e40e9 100755 --- a/src/conf_mode/interfaces-wireless.py +++ b/src/conf_mode/interfaces-wireless.py @@ -799,7 +799,7 @@ default_config_data = { 'cap_vht_center_freq_2' : '', 'cap_vht_chan_set_width' : '', 'cap_vht_ldpc' : False, - 'cap_vht_link_adaptation' : False, + 'cap_vht_link_adaptation' : '', 'cap_vht_max_mpdu_exp' : '', 'cap_vht_max_mpdu' : '', 'cap_vht_short_gi' : [], @@ -1043,7 +1043,7 @@ def get_config(): # VHT link adaptation capabilities if conf.exists('capabilities vht link-adaptation'): wifi['cap_vht'] = True - wifi['cap_vht_link_adaptation'] = True + wifi['cap_vht_link_adaptation'] = conf.return_value('capabilities vht link-adaptation') # Set the maximum length of A-MPDU pre-EOF padding that the station can receive if conf.exists('capabilities vht max-mpdu-exp'): |