From aea35aa5c6ccc9a1490e9ef387f37f5547c88605 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 4 Feb 2010 12:27:42 -0800 Subject: [PATCH] notmuch reply: Fix the support for reply-to un-munging. The condition was using a reversed sense for the test of the return value of strcasestr, (perhaps confusing it with the usage of strcmp?). --- notmuch-reply.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notmuch-reply.c b/notmuch-reply.c index 31679a57..671a9155 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -220,8 +220,8 @@ mailing_list_munged_reply_to (notmuch_message_t *message) addr = internet_address_mailbox_get_addr (mailbox); /* Note that strcasestr() is a GNU extension, strstr() might be sufficient */ - if (strcasestr (notmuch_message_get_header (message, "to"), addr) == 0 || - strcasestr (notmuch_message_get_header (message, "cc"), addr) == 0) + if (strcasestr (notmuch_message_get_header (message, "to"), addr) != 0 || + strcasestr (notmuch_message_get_header (message, "cc"), addr) != 0) { return 1; } -- 2.43.0