aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-reply.c
diff options
context:
space:
mode:
authorGravatar Dmitry Kurochkin <dmitry.kurochkin@gmail.com>2011-06-15 15:12:14 +0400
committerGravatar Carl Worth <cworth@cworth.org>2011-06-15 07:08:28 -0700
commit917e87415edbeb7cd744b54ea4079b2e42899d3c (patch)
tree6f0ad9630aff27b12e20bb5526da6d712c6c827d /notmuch-reply.c
parenteeffa305eb302f52e326f7cb72a787556b8a7f00 (diff)
Fix indentation in guess_from_received_header().
Diffstat (limited to 'notmuch-reply.c')
-rw-r--r--notmuch-reply.c12
1 files changed, 6 insertions, 6 deletions
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);
}