Changeset 2566
- Timestamp:
- 02/07/06 01:58:05
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/libgalago/protocol-cleanup/ChangeLog
r2565 r2566 1 Tue Feb 07 01:57:41 PST 2006 Christian Hammond <chipx86@chipx86.com> 2 3 * libgalago/galago-core.c: 4 - Remove some asserts that were preventing re-registration from 5 working. It's still buggy, but works better now. 6 1 7 Tue Feb 07 01:37:12 PST 2006 Christian Hammond <chipx86@chipx86.com> 2 8 branches/libgalago/protocol-cleanup/libgalago/galago-core.c
r2565 r2566 1310 1310 } 1311 1311 1312 g_assert(galago_object_get_dbus_path(GALAGO_OBJECT(service)) == NULL);1313 1314 1312 dbus_conn = galago_get_dbus_conn(); 1315 1313 … … 1386 1384 g_signal_emit(_core, signals[PERSON_ADDED], 0, person); 1387 1385 1388 printf("Attempting to call AddPerson %p (%s)\n", person,1389 galago_person_get_id(person));1390 1386 if (!galago_is_connected() || !galago_is_feed() || 1391 1387 GALAGO_OBJECT_IS_REMOTE(person)) … … 1393 1389 return; 1394 1390 } 1395 1396 g_assert(galago_object_get_dbus_path(GALAGO_OBJECT(person)) == NULL);1397 1391 1398 1392 dbus_conn = galago_get_dbus_conn(); … … 1408 1402 galago_dbus_message_iter_append_object(&iter, GALAGO_OBJECT(person)); 1409 1403 1410 printf("Called AddPerson\n");1411 1404 dbus_error_init(&error); 1412 1405 reply = dbus_connection_send_with_reply_and_block(dbus_conn, message, -1,
