From 2535395a8cf34ded6d4d5c8d2a25eec6ab1abe1d Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 13 Dec 2022 08:36:59 +0100 Subject: [PATCH] dhcp: use nm_dhcp_option_create_options_dict() in nm_dhcp_client_handle_event() The point of using this trivial helper function is to have one function that is related to the construction of the options dictionary, that we can search for. It answers the question, where do we create a option hash (at `git grep nm_dhcp_option_create_options_dict`). (cherry picked from commit ccbe76b81d2bb49d290b01dcf5e9f391279115c6) --- src/core/dhcp/nm-dhcp-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/dhcp/nm-dhcp-client.c b/src/core/dhcp/nm-dhcp-client.c index 4a2263e76c..7f507e2e1c 100644 --- a/src/core/dhcp/nm-dhcp-client.c +++ b/src/core/dhcp/nm-dhcp-client.c @@ -1612,7 +1612,7 @@ nm_dhcp_client_handle_event(gpointer unused, GVariant *value; /* Copy options */ - str_options = g_hash_table_new_full(nm_str_hash, g_str_equal, g_free, g_free); + str_options = nm_dhcp_option_create_options_dict(FALSE); g_variant_iter_init(&iter, options); while (g_variant_iter_next(&iter, "{&sv}", &name, &value)) { maybe_add_option(self, str_options, name, value);