X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-tag.c;h=07cb8c5f21b53df36452b3fc14415b63f2f0b075;hp=75d464f20980d7ece09cd25cbec7c0b10582a355;hb=70962fabf9c57cda5af26c28894fc9371fd085f2;hpb=f379aa52845f5594aa6cc2e7cf131d5f57202bbf diff --git a/notmuch-tag.c b/notmuch-tag.c index 75d464f2..07cb8c5f 100644 --- a/notmuch-tag.c +++ b/notmuch-tag.c @@ -95,7 +95,7 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[])) return 1; notmuch = notmuch_database_open (notmuch_config_get_database_path (config), - NOTMUCH_DATABASE_MODE_WRITABLE); + NOTMUCH_DATABASE_MODE_READ_WRITE); if (notmuch == NULL) return 1; @@ -105,7 +105,7 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[])) return 1; } - for (messages = notmuch_query_search_messages (query, 0, -1); + for (messages = notmuch_query_search_messages (query); notmuch_messages_has_more (messages) && !interrupted; notmuch_messages_advance (messages)) {