Fix indentation in guess_from_received_header().

This commit is contained in:
Dmitry Kurochkin 2011-06-15 15:12:14 +04:00 committed by Carl Worth
parent eeffa305eb
commit 917e87415e

View file

@ -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);
}