From 78b9448b69d1e511aab9f24f4da8a6731c2dc7ee Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Tue, 23 Apr 2019 21:14:31 +0200 Subject: cli: remove bluetooth completion code The 'bt-type' property alias accepts values provided by gen_func_bt_type(); instead the 'bluetooth.type' property can only be set to [dun, panu, nap] and therefore it doesn't need special handling. --- clients/cli/connections.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'clients/cli/connections.c') diff --git a/clients/cli/connections.c b/clients/cli/connections.c index 2c4b8d2478..282cbe06f0 100644 --- a/clients/cli/connections.c +++ b/clients/cli/connections.c @@ -4561,14 +4561,8 @@ complete_property (const char *setting_name, const char *property, const char *p const NMMetaPropertyInfo *property_info; property_info = nm_meta_property_info_find_by_name (setting_name, property); - if (property_info) { - if (complete_option ((const NMMetaAbstractInfo *) property_info, prefix, connection)) - return; - } - - if ( strcmp (setting_name, NM_SETTING_BLUETOOTH_SETTING_NAME) == 0 - && strcmp (property, NM_SETTING_BLUETOOTH_TYPE) == 0) - run_rl_generator (gen_func_bt_type, prefix); + if (property_info) + complete_option ((const NMMetaAbstractInfo *) property_info, prefix, connection); } /*****************************************************************************/ -- cgit v1.2.1