libnm-utils: fix typo in bond ad_select bandwidth mode

The correct spelling is `bandwidth` instead of `bandwith`.

https://bugs.launchpad.net/network-manager/+bug/1987001

Fixes: 32870d8233 ('libnm-utils: convert string bond opts to int')
(cherry picked from commit 5f3237acab)
This commit is contained in:
Fernando Fernandez Mancera 2022-08-25 15:21:44 +02:00 committed by Thomas Haller
parent 1b704e2f42
commit f693bc6b71
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -51,7 +51,7 @@ NM_UTILS_STRING_TABLE_LOOKUP_DEFINE(
}
},
{ return NM_BOND_AD_SELECT_STABLE; },
{"bandwith", NM_BOND_AD_SELECT_BANDWIDTH},
{"bandwidth", NM_BOND_AD_SELECT_BANDWIDTH},
{"count", NM_BOND_AD_SELECT_COUNT},
{"stable", NM_BOND_AD_SELECT_STABLE}, );