]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-reply.c
Merge branch 'release'
[notmuch] / notmuch-reply.c
index 166a59467eec711ac8fb9b5d22f3e6b6027818da..2fa6e5a369595379c0fc7defe47a17294f36dc8f 100644 (file)
@@ -630,7 +630,7 @@ static int do_reply(notmuch_config_t *config,
     if (format == FORMAT_JSON || format == FORMAT_SEXP) {
        unsigned count;
 
-       status = notmuch_query_count_messages_st (query, &count);
+       status = notmuch_query_count_messages (query, &count);
        if (print_status_query ("notmuch reply", query, status))
            return 1;
 
@@ -645,7 +645,7 @@ static int do_reply(notmuch_config_t *config,
            sp = sprinter_sexp_create (config, stdout);
     }
 
-    status = notmuch_query_search_messages_st (query, &messages);
+    status = notmuch_query_search_messages (query, &messages);
     if (print_status_query ("notmuch reply", query, status))
        return 1;