X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fmessage.cc;h=b4bf0ce03463c0245a8d729ee33dbc4fde7af99e;hp=8ae929012d5a4f8d3c6761b356d47d19731aa685;hb=37a8096fdc0584567aab43a8bede7b32860a3517;hpb=483f422699cc480b856ceeac77a4fa5d11f82ea0 diff --git a/lib/message.cc b/lib/message.cc index 8ae92901..b4bf0ce0 100644 --- a/lib/message.cc +++ b/lib/message.cc @@ -1009,15 +1009,11 @@ notmuch_message_tags_to_maildir_flags (notmuch_message_t *message) strcpy (filename_new+(p-filename)+3, flags); if (strcmp (filename, filename_new) != 0) { - notmuch_status_t status; + notmuch_status_t status = NOTMUCH_STATUS_SUCCESS; ret = rename (filename, filename_new); - if (ret == -1) { - perror (talloc_asprintf (message, "rename of %s to %s failed", - filename, filename_new)); - exit (1); - } - status = _notmuch_message_rename (message, filename_new); + if (ret == 0) + status = _notmuch_message_rename (message, filename_new); _notmuch_message_sync (message);