From 3862e5642d1dfcab7a3090cfb1daed2544a7b04d Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Sat, 22 Nov 2008 18:06:30 +0200 Subject: Use correct property types for Device and UUID --- network/connection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'network') diff --git a/network/connection.c b/network/connection.c index ed667086..1bb7bd92 100644 --- a/network/connection.c +++ b/network/connection.c @@ -252,10 +252,10 @@ static gboolean bnep_connect_cb(GIOChannel *chan, GIOCondition cond, DBUS_TYPE_BOOLEAN, &connected); emit_property_changed(connection, nc->peer->path, NETWORK_PEER_INTERFACE, "Device", - DBUS_TYPE_BOOLEAN, &pdev); + DBUS_TYPE_STRING, &pdev); emit_property_changed(connection, nc->peer->path, NETWORK_PEER_INTERFACE, "UUID", - DBUS_TYPE_BOOLEAN, &uuid); + DBUS_TYPE_STRING, &uuid); nc->state = CONNECTED; -- cgit