summaryrefslogtreecommitdiff
path: root/src/nm-core-utils.c
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2019-01-28 16:56:46 +0100
committerThomas Haller <thaller@redhat.com>2019-02-21 09:36:17 +0100
commitb5efcf08f4598004606181fe005e8a22127df61c (patch)
tree105fbe2b262422b55ca3fefb4ff9a542fc5a47d4 /src/nm-core-utils.c
parentd2144019d84c3706446f28220c84b678c105d164 (diff)
downloadNetworkManager-b5efcf08f4598004606181fe005e8a22127df61c.tar.gz
all: move nm_utils_bin2hexstr_full() to shared
reuse++
Diffstat (limited to 'src/nm-core-utils.c')
-rw-r--r--src/nm-core-utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nm-core-utils.c b/src/nm-core-utils.c
index 6141c5f1cf..340bbcdb15 100644
--- a/src/nm-core-utils.c
+++ b/src/nm-core-utils.c
@@ -2391,11 +2391,11 @@ _uuid_data_init (UuidData *uuid_data,
uuid_data->is_fake = is_fake;
if (packed) {
G_STATIC_ASSERT_EXPR (sizeof (uuid_data->str) >= (sizeof (*uuid) * 2 + 1));
- _nm_utils_bin2hexstr_full (uuid,
- sizeof (*uuid),
- '\0',
- FALSE,
- uuid_data->str);
+ nm_utils_bin2hexstr_full (uuid,
+ sizeof (*uuid),
+ '\0',
+ FALSE,
+ uuid_data->str);
} else {
G_STATIC_ASSERT_EXPR (sizeof (uuid_data->str) >= 37);
_nm_utils_uuid_unparse (uuid, uuid_data->str);