From: Dmitry Kurochkin Date: Wed, 15 Jun 2011 11:12:14 +0000 (+0400) Subject: Fix indentation in guess_from_received_header(). X-Git-Tag: debian/0.6_254~28 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=917e87415edbeb7cd744b54ea4079b2e42899d3c Fix indentation in guess_from_received_header(). --- diff --git a/notmuch-reply.c b/notmuch-reply.c index 64f70bf7..27ef37bd 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -427,13 +427,13 @@ guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message if (strcasestr(primary, domain)) { free(mta); - return primary; - } - for (i = 0; i < other_len; i++) - if (strcasestr (other[i],domain)) { - free(mta); - return other[i]; + return primary; } + for (i = 0; i < other_len; i++) + if (strcasestr (other[i],domain)) { + free(mta); + return other[i]; + } } free (mta); }