summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/connman.h2
-rw-r--r--src/rtnl.c2
-rw-r--r--src/technology.c5
3 files changed, 6 insertions, 3 deletions
diff --git a/src/connman.h b/src/connman.h
index c61a872f..495eef4e 100644
--- a/src/connman.h
+++ b/src/connman.h
@@ -473,7 +473,7 @@ void __connman_technology_scan_stopped(struct connman_device *device);
void __connman_technology_add_interface(enum connman_service_type type,
int index, const char *name, const char *ident);
void __connman_technology_remove_interface(enum connman_service_type type,
- int index, const char *name, const char *ident);
+ int index, const char *ident);
void __connman_technology_notify_regdom_by_device(struct connman_device *device,
int result, const char *alpha2);
diff --git a/src/rtnl.c b/src/rtnl.c
index 9a77efc1..c3d52e86 100644
--- a/src/rtnl.c
+++ b/src/rtnl.c
@@ -78,7 +78,7 @@ static void free_interface(gpointer data)
struct interface_data *interface = data;
__connman_technology_remove_interface(interface->service_type,
- interface->index, interface->name, interface->ident);
+ interface->index, interface->ident);
g_free(interface->ident);
g_free(interface->name);
diff --git a/src/technology.c b/src/technology.c
index 8bbd3276..6dfdb6a5 100644
--- a/src/technology.c
+++ b/src/technology.c
@@ -1297,11 +1297,12 @@ void __connman_technology_add_interface(enum connman_service_type type,
}
void __connman_technology_remove_interface(enum connman_service_type type,
- int index, const char *name, const char *ident)
+ int index, const char *ident)
{
struct connman_technology *technology;
GSList *tech_drivers;
struct connman_technology_driver *driver;
+ char *name;
switch (type) {
case CONNMAN_SERVICE_TYPE_UNKNOWN:
@@ -1317,8 +1318,10 @@ void __connman_technology_remove_interface(enum connman_service_type type,
break;
}
+ name = connman_inet_ifname(index);
connman_info("Remove interface %s [ %s ]", name,
__connman_service_type2string(type));
+ g_free(name);
technology = technology_find(type);