]> git.notmuchmail.org Git - notmuch/commitdiff
Merge branch 'release'
authorDavid Bremner <david@tethera.net>
Thu, 1 Jun 2017 10:54:38 +0000 (07:54 -0300)
committerDavid Bremner <david@tethera.net>
Thu, 1 Jun 2017 10:54:38 +0000 (07:54 -0300)
1  2 
bindings/python/notmuch/version.py
notmuch-dump.c

index bfdcf7ed32cca758e67bb4ea8c6418851422a47b,49bca3475f4caa7954aa2de8bd9c4767a5f5a89a..6101902b8ecd20a8a79af1cb77cc4d189fe83d35
@@@ -1,3 -1,3 +1,3 @@@
  # this file should be kept in sync with ../../../version
- __VERSION__ = '0.24.1'
+ __VERSION__ = '0.24.2'
 -SOVERSION = '4'
 +SOVERSION = '5'
diff --combined notmuch-dump.c
index e451ac0c8e89448819184e2480b83db222ac93d6,f0ac193241191da7dbcd64e53f4db71cbf4a2764..5cc3b2f62b46530e5dbb3f63b5d127043fc9c610
@@@ -240,7 -240,7 +240,7 @@@ database_dump_file (notmuch_database_t 
       */
      notmuch_query_set_sort (query, NOTMUCH_SORT_UNSORTED);
  
 -    status = notmuch_query_search_messages_st (query, &messages);
 +    status = notmuch_query_search_messages (query, &messages);
      if (print_status_query ("notmuch dump", query, status))
        return EXIT_FAILURE;
  
  
        message = notmuch_messages_get (messages);
  
-       if (dump_tags_message (notmuch, message, output_format, output,
+       if ((include & DUMP_INCLUDE_TAGS) &&
+           dump_tags_message (notmuch, message, output_format, output,
                               &buffer, &buffer_size))
            return EXIT_FAILURE;