aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/calendar-pilot-sync.c
diff options
context:
space:
mode:
authorPeter Teichman <teichman@src.gnome.org>1999-08-08 11:38:25 +0800
committerPeter Teichman <teichman@src.gnome.org>1999-08-08 11:38:25 +0800
commit1b3a69c80916d9224926af9b31b4fb7df387c6e7 (patch)
tree18d1786c33950b6ef5bd1f33d2ff72a76a229971 /calendar/calendar-pilot-sync.c
parentdb89b1a62fb0fa1ed57a9cdd275c0a977630a56a (diff)
downloadgsoc2013-evolution-1b3a69c80916d9224926af9b31b4fb7df387c6e7.tar
gsoc2013-evolution-1b3a69c80916d9224926af9b31b4fb7df387c6e7.tar.gz
gsoc2013-evolution-1b3a69c80916d9224926af9b31b4fb7df387c6e7.tar.bz2
gsoc2013-evolution-1b3a69c80916d9224926af9b31b4fb7df387c6e7.tar.lz
gsoc2013-evolution-1b3a69c80916d9224926af9b31b4fb7df387c6e7.tar.xz
gsoc2013-evolution-1b3a69c80916d9224926af9b31b4fb7df387c6e7.tar.zst
gsoc2013-evolution-1b3a69c80916d9224926af9b31b4fb7df387c6e7.zip
sync correctly for objects created on the pilot, but not dirty (because
* calendar-pilot-sync.c (sync_pilot): sync correctly for objects created on the pilot, but not dirty (because they have been synced with some other program in the past) svn path=/trunk/; revision=1093
Diffstat (limited to 'calendar/calendar-pilot-sync.c')
-rw-r--r--calendar/calendar-pilot-sync.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/calendar/calendar-pilot-sync.c b/calendar/calendar-pilot-sync.c
index 9461278e8b..e8261197af 100644
--- a/calendar/calendar-pilot-sync.c
+++ b/calendar/calendar-pilot-sync.c
@@ -581,10 +581,9 @@ sync_pilot (GNOME_Calendar_Repository repo, int pilot_fd)
if (attr & dlpRecAttrArchived)
continue;
- if (attr & dlpRecAttrDirty){
- printf ("updating record\n");
- update_record (repo, id, &a, attr);
- }
+ printf ("updating record\n");
+ update_record (repo, id, &a, attr);
+
conduit_free_Appointment (&a);
}
}