Actually encrypt passwords before storing them
[claws.git] / src / plugins / vcalendar / vcal_manager.c
index 58675143dddb7eabfcbcfa2ef29dea894183f6e9..1f11f26f448eb1307e304c24adda106b13d9120a 100644 (file)
@@ -920,7 +920,7 @@ void vcal_manager_save_event (VCalEvent *event, gboolean export_after)
        xml_tag_add_attr(tag, xml_attr_new("type", tmp));
        g_free(tmp);
        
        xml_tag_add_attr(tag, xml_attr_new("type", tmp));
        g_free(tmp);
        
-       tmp = g_strdup_printf("%lu", event->postponed);
+       tmp = g_strdup_printf("%lld", (long long)event->postponed);
        xml_tag_add_attr(tag, xml_attr_new("postponed", tmp));
        g_free(tmp);
        
        xml_tag_add_attr(tag, xml_attr_new("postponed", tmp));
        g_free(tmp);