diff options
| author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-05-09 14:49:23 +0000 | 
|---|---|---|
| committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-05-09 14:49:23 +0000 | 
| commit | 0ebe9945de9b9e91169619cf1e09a40796aad41b (patch) | |
| tree | 104137b73cc96d1c2131816238e555cac0534f21 | |
| parent | a0d73b7c7ce83bdd633aca429897a89ac7667490 (diff) | |
Use dbus_connection_destroy object path instead of dbus_connection_unregister_object_path
| -rw-r--r-- | network/manager.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/network/manager.c b/network/manager.c index 8e8a4066..07f30d46 100644 --- a/network/manager.c +++ b/network/manager.c @@ -177,7 +177,7 @@ static DBusHandlerResult remove_path(DBusConnection *conn,  	/* Remove the nap or gn file from the file system */  	server_remove_stored(conn, path); -	if (!dbus_connection_unregister_object_path(conn, path)) +	if (!dbus_connection_destroy_object_path(conn, path))  		error("Network path unregister failed");  	signal = dbus_message_new_signal(NETWORK_PATH, | 
