Actually encrypt passwords before storing them
[claws.git] / src / plugins / vcalendar / vcal_manager.c
index 7a4cef28f4f24746f4cb377d3bd0057179baa444..1f11f26f448eb1307e304c24adda106b13d9120a 100644 (file)
@@ -567,7 +567,7 @@ static gchar *write_headers_date(const gchar *uid)
                t = time(NULL) + (86400*7);
                t_subject = _("Later");
        }  else {
-               g_warning("unknown spec date\n");
+               g_warning("unknown spec date");
                return NULL;
        } 
        
@@ -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);
        
-       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);
        
@@ -972,7 +972,7 @@ void vcal_manager_save_event (VCalEvent *event, gboolean export_after)
        xml_free_tree(rootnode);
 
        if (prefs_file_close(pfile) < 0) {
-               g_warning("failed to write event.\n");
+               g_warning("failed to write event.");
                return;
        }
  
@@ -989,7 +989,7 @@ static VCalEvent *event_get_from_xml (const gchar *uid, GNode *node)
        gchar *description = NULL, *url = NULL, *recur = NULL;
        VCalEvent *event = NULL;
        enum icalproperty_method method = ICAL_METHOD_REQUEST;
-       enum icalproperty_kind type = ICAL_VEVENT_COMPONENT;
+       enum icalcomponent_kind type = ICAL_VEVENT_COMPONENT;
        gint sequence = 0, rec_occurence = 0;
        time_t postponed = (time_t)0;
        
@@ -997,7 +997,7 @@ static VCalEvent *event_get_from_xml (const gchar *uid, GNode *node)
 
        xmlnode = node->data;
        if (strcmp2(xmlnode->tag->tag, "event") != 0) {
-               g_warning("tag name != \"event\"\n");
+               g_warning("tag name != \"event\"");
                return NULL;
        }
        
@@ -1065,7 +1065,7 @@ static VCalEvent *event_get_from_xml (const gchar *uid, GNode *node)
                
                xmlnode = node->data;
                if (strcmp2(xmlnode->tag->tag, "answer") != 0) {
-                       g_warning("tag name != \"answer\"\n");
+                       g_warning("tag name != \"answer\"");
                        return event;
                }
                list = xmlnode->tag->attr;
@@ -1111,7 +1111,7 @@ VCalEvent *vcal_manager_load_event (const gchar *uid)
        g_free(path);
        
        if (!node) {
-               g_warning("no node\n");
+               g_warning("no node");
                return NULL;
        }
        
@@ -1245,11 +1245,14 @@ static gchar *write_headers(PrefsAccount        *account,
                else if (status == ICAL_PARTSTAT_TENTATIVE)
                        prefix = _("Tentatively Accepted: ");
                else 
-                       prefix = "Re: ";
-       } else if (event->method == ICAL_METHOD_PUBLISH)
+                       prefix = "Re: "; 
+       } else if (event->method == ICAL_METHOD_PUBLISH) {
                method_str = "PUBLISH";
-       else
-               method_str = "REQUEST";         
+       } else if (event->method == ICAL_METHOD_CANCEL) {
+               method_str = "CANCEL";
+       } else {
+               method_str = "REQUEST";
+       }
        
        subject = g_strdup_printf("%s%s", prefix, event->summary);
 
@@ -1420,7 +1423,7 @@ static gboolean vcal_manager_send (PrefsAccount   *account,
 
        folderitem = account_get_special_folder(account, F_QUEUE);
        if (!folderitem) {
-               g_warning("can't find queue folder for %s\n", account->address);
+               g_warning("can't find queue folder for %s", account->address);
                g_unlink(tmpfile);
                g_free(tmpfile);
                return FALSE;
@@ -1428,7 +1431,7 @@ static gboolean vcal_manager_send (PrefsAccount   *account,
        folder_item_scan(folderitem);
        
        if ((msgnum = folder_item_add_msg(folderitem, tmpfile, NULL, TRUE)) < 0) {
-               g_warning("can't queue the message\n");
+               g_warning("can't queue the message");
                g_unlink(tmpfile);
                g_free(tmpfile);
                return FALSE;