--- src/adapter.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/adapter.c b/src/adapter.c index 7fcd42c..7ab2389 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -2556,6 +2556,12 @@ static void convert_ltk_entry(GKeyFile *key_file, void *value) g_free(str); } +static void convert_profiles_entry(GKeyFile *key_file, void *value) +{ + g_strdelimit(value, " ", ';'); + g_key_file_set_string(key_file, "General", "Profiles", value); +} + static void convert_entry(char *key, char *value, void *user_data) { struct device_converter *converter = user_data; @@ -2663,6 +2669,9 @@ static void convert_device_storage(struct btd_adapter *adapter) /* Convert blocked */ convert_file("blocked", address, convert_blocked_entry, TRUE); + /* Convert profiles */ + convert_file("profiles", address, convert_profiles_entry, TRUE); + /* Convert linkkeys */ convert_file("linkkeys", address, convert_linkkey_entry, TRUE); -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html