summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Fernandez Mancera <ffmancera@riseup.net>2022-08-25 15:21:44 +0200
committerThomas Haller <thaller@redhat.com>2022-08-25 15:34:30 +0200
commit5f3237acab03de4a3e9d57f50a180c5e4f6af6ca (patch)
treece3d04a736ead76d75a74266efcc2e07389d013d
parent7d4307e8dfdd6c8d33d35147d593259fbaf0f7bf (diff)
downloadNetworkManager-5f3237acab03de4a3e9d57f50a180c5e4f6af6ca.tar.gz
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: 32870d823379 ('libnm-utils: convert string bond opts to int')
-rw-r--r--src/libnm-core-aux-intern/nm-libnm-core-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnm-core-aux-intern/nm-libnm-core-utils.c b/src/libnm-core-aux-intern/nm-libnm-core-utils.c
index ba05b6cd48..4fdf9d6d4e 100644
--- a/src/libnm-core-aux-intern/nm-libnm-core-utils.c
+++ b/src/libnm-core-aux-intern/nm-libnm-core-utils.c
@@ -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}, );