]> git.cworth.org Git - notmuch/commit
Fix bit-twiddling brain damage in notmuch_query_search
authorCarl Worth <cworth@cworth.org>
Sun, 25 Oct 2009 05:20:13 +0000 (22:20 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 25 Oct 2009 05:20:13 +0000 (22:20 -0700)
commit15d949b7404b322df39e2aae7a5653e4cf8a8dc9
tree63d48e88aea13d5734a908666fed23da83e03f65
parent526b7144f7d692e04ce950dfa7d0ee1bdf792cdc
Fix bit-twiddling brain damage in notmuch_query_search

Here's the big bug that was preventing any searches from working at
all like desired. I did the work to carefully pick out exactly the
flags that I wanted, and then I threw it away by trying to combine
them with & instead of | (so just passing 0 for flags instead).

Much better now.
query.cc