From 9cf4da473a8f51c9dccce3ca94945730e4445c5a Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Fri, 26 Oct 2001 18:26:50 +0000 Subject: make debug output more accurate 2001-10-26 JP Rosevear * conduits/calendar/calendar-conduit.c (check_for_slow_setting): make debug output more accurate * conduits/todo/todo-conduit.c (check_for_slow_setting): ditto svn path=/trunk/; revision=14156 --- calendar/conduits/todo/todo-conduit.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'calendar/conduits/todo/todo-conduit.c') diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 4c6289702c..8bd153364d 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -650,20 +650,18 @@ update_comp (GnomePilotConduitSyncAbs *conduit, CalComponent *comp, static void check_for_slow_setting (GnomePilotConduit *c, EToDoConduitContext *ctxt) { - int count, map_count; + GnomePilotConduitStandard *conduit = GNOME_PILOT_CONDUIT_STANDARD (c); + int map_count; - count = g_list_length (ctxt->uids); - map_count = g_hash_table_size (ctxt->map->pid_map); - /* If there are no objects or objects but no log */ - if (map_count == 0) { - GnomePilotConduitStandard *conduit; - LOG (" doing slow sync\n"); - conduit = GNOME_PILOT_CONDUIT_STANDARD (c); + map_count = g_hash_table_size (ctxt->map->pid_map); + if (map_count == 0) gnome_pilot_conduit_standard_set_slow (conduit, TRUE); - } else { + + if (gnome_pilot_conduit_standard_get_slow (conduit)) + LOG (" doing slow sync\n"); + else LOG (" doing fast sync\n"); - } } /* Pilot syncing callbacks */ -- cgit v1.2.3