diff --git a/hald/linux/device.c b/hald/linux/device.c index f34ebf0..3e5a6d9 100644 --- a/hald/linux/device.c +++ b/hald/linux/device.c @@ -469,7 +469,6 @@ net_add (const gchar *sysfs_path, const gchar *device_file, HalDevice *parent_de hal_device_property_set_uint64 (d, "net.bluetooth.mac_address", mac_address); /* Leave those properties empty so helper may fill it up */ hal_device_property_set_string (d, "net.bluetooth.name", ""); - hal_device_property_set_string (d, "net.bluetooth.description", ""); hal_device_property_set_string (d, "net.bluetooth.uuid", ""); } else if ((stat (wireless_path, &s) == 0 && (s.st_mode & S_IFDIR)) || (stat (wiphy_path, &s) == 0 && (s.st_mode & S_IFDIR))) { diff --git a/hald/linux/probing/probe-net-bluetooth.c b/hald/linux/probing/probe-net-bluetooth.c index 76e0786..103428b 100644 --- a/hald/linux/probing/probe-net-bluetooth.c +++ b/hald/linux/probing/probe-net-bluetooth.c @@ -110,7 +110,7 @@ main (int argc, char *argv[]) if ((ctx = libhal_ctx_init_direct (&error)) == NULL) goto out; - iface = libhal_device_get_property_string (ctx, udi, "net.interface", + iface = libhal_device_get_property_string (ctx, udi, "net.interface", NULL); HAL_INFO (("Investigating '%s'", iface)); @@ -189,13 +189,6 @@ main (int argc, char *argv[]) libhal_device_set_property_string (ctx, udi, "net.bluetooth.name", name, &error); - description = get_property (conn, id, connection, "GetDescription"); - if (description == NULL) - goto out; - - libhal_device_set_property_string (ctx, udi, "net.bluetooth.description", - description, &error); - uuid = get_property (conn, id, connection, "GetUUID"); if (uuid == NULL) goto out; -- 1.4.4.2