Diff between d1d008d5842813cf1d11615345d61ba756a5a054 and 546ec13c0df3ecbd60e66213f4aef49f8f39dfeb

Changed Files

File Additions Deletions Status
profiles/network/connection.c +2 -2 modified

Full Patch

diff --git a/profiles/network/connection.c b/profiles/network/connection.c
index 2b07771..77e0a34 100644
--- a/profiles/network/connection.c
+++ b/profiles/network/connection.c
@@ -293,7 +293,7 @@ static DBusMessage *local_connect(DBusConnection *conn,
 
 	id = get_pan_srv_id(svc);
 	bt_uuid16_create(&uuid16, id);
-	bt_uuid_to_uuid128(&uuid128, &uuid16);
+	bt_uuid_to_uuid128(&uuid16, &uuid128);
 
 	if (bt_uuid_to_string(&uuid128, uuid_str, MAX_LEN_UUID_STR) < 0)
 		return btd_error_invalid_args(msg);
@@ -447,7 +447,7 @@ static gboolean network_property_get_uuid(const GDBusPropertyTable *property,
 		return FALSE;
 
 	bt_uuid16_create(&uuid16, nc->id);
-	bt_uuid_to_uuid128(&uuid128, &uuid16);
+	bt_uuid_to_uuid128(&uuid16, &uuid128);
 	bt_uuid_to_string(&uuid128, uuid_str, MAX_LEN_UUID_STR);
 
 	dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &uuid_str);