]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-tag.c
lib/messages.c: Make message searches stream as well.
[notmuch] / notmuch-tag.c
index 12ab86c58d8429229b27a870ec98962ea1e70304..07cb8c5f21b53df36452b3fc14415b63f2f0b075 100644 (file)
@@ -94,7 +94,8 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[]))
     if (config == NULL)
        return 1;
 
-    notmuch = notmuch_database_open (notmuch_config_get_database_path (config));
+    notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
+                                    NOTMUCH_DATABASE_MODE_READ_WRITE);
     if (notmuch == NULL)
        return 1;
 
@@ -104,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))
     {