diff options
Diffstat (limited to 'server/dbus/sssd_dbus_common.c')
-rw-r--r-- | server/dbus/sssd_dbus_common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/dbus/sssd_dbus_common.c b/server/dbus/sssd_dbus_common.c index 188192dd..a7f2bff2 100644 --- a/server/dbus/sssd_dbus_common.c +++ b/server/dbus/sssd_dbus_common.c @@ -1,6 +1,7 @@ #include <sys/time.h> #include "events.h" #include "dbus/dbus.h" +#include "util/util.h" struct timeval _dbus_timeout_get_interval_tv(int interval) { struct timeval tv; @@ -20,6 +21,8 @@ struct timeval _dbus_timeout_get_interval_tv(int interval) { */ void remove_watch(DBusWatch *watch, void *data) { struct fd_event *fde; + + DEBUG(2, ("%lX\n", watch)); fde = talloc_get_type(dbus_watch_get_data(watch), struct fd_event); /* Freeing the event object will remove it from the event loop */ |