about summary refs log tree commit diff
path: root/src/nm-dispatcher/tests
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2022-01-13 22:34:27 +0100
committerMichael Biebl <biebl@debian.org>2022-01-13 22:34:27 +0100
commitdd97d276b5d70c3397a4e59c978ca5228f06ba44 (patch)
tree5fb3f5e0f5da28e39d3261d50561349a512ba297 /src/nm-dispatcher/tests
parent3e2f6719468f8d957ae3cb112f3cb75b9c82d6a7 (diff)
parent88c227d90a6b7b388c5c85d72802a0ca8f05ed5c (diff)
Update upstream source from tag 'upstream/1.34.0'
Update to upstream version '1.34.0'
with Debian dir b598c27ee9cef517760bc745aa6a3bb7d9fb2ecb
Diffstat (limited to 'src/nm-dispatcher/tests')
-rw-r--r--src/nm-dispatcher/tests/test-dispatcher-envp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nm-dispatcher/tests/test-dispatcher-envp.c b/src/nm-dispatcher/tests/test-dispatcher-envp.c
index 297cfbbd..8a24c426 100644
--- a/src/nm-dispatcher/tests/test-dispatcher-envp.c
+++ b/src/nm-dispatcher/tests/test-dispatcher-envp.c
@@ -159,7 +159,7 @@ add_uint_array(GKeyFile *       kf,
     if (tmp == NULL)
         return TRUE;
 
-    split = nm_utils_strsplit_set_with_empty(tmp, " ");
+    split = nm_strsplit_set_with_empty(tmp, " ");
     if (split) {
         gs_unref_array GArray *items = NULL;
 
@@ -229,7 +229,7 @@ parse_ip4(GKeyFile *kf, GVariant **out_props, const char *section, GError **erro
     tmp = g_key_file_get_string(kf, section, "domains", error);
     if (tmp == NULL)
         return FALSE;
-    split = nm_utils_strsplit_set_with_empty(tmp, " ");
+    split = nm_strsplit_set_with_empty(tmp, " ");
     if (split) {
         for (iter = split; *iter; iter++)
             g_strstrip((char *) *iter);
@@ -247,7 +247,7 @@ parse_ip4(GKeyFile *kf, GVariant **out_props, const char *section, GError **erro
     tmp = g_key_file_get_string(kf, section, "addresses", error);
     if (tmp == NULL)
         return FALSE;
-    split = nm_utils_strsplit_set_with_empty(tmp, ",");
+    split = nm_strsplit_set_with_empty(tmp, ",");
     if (split) {
         gs_unref_ptrarray GPtrArray *addresses = NULL;
         const char *                 gateway   = NULL;
@@ -291,7 +291,7 @@ parse_ip4(GKeyFile *kf, GVariant **out_props, const char *section, GError **erro
 
     nm_clear_g_free(&tmp);
     tmp   = g_key_file_get_string(kf, section, "routes", NULL);
-    split = nm_utils_strsplit_set_with_empty(tmp, ",");
+    split = nm_strsplit_set_with_empty(tmp, ",");
     if (split) {
         gs_unref_ptrarray GPtrArray *routes = NULL;