mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Fix indentation in guess_from_received_header().
This commit is contained in:
parent
eeffa305eb
commit
917e87415e
1 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue