notmuch-reply: Fix some whitespace issues.

No actual code change here. Just whitespace style, (mostly just my
preferred space before a left parenthesis, and a space after a comma).
This commit is contained in:
Carl Worth 2010-04-06 18:49:25 -07:00
parent 4fd9ea05e8
commit 3e216ba60d

View file

@ -282,7 +282,6 @@ add_recipients_from_message (GMimeMessage *reply,
return from_addr;
}
static const char *
guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message)
{
@ -305,6 +304,7 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
mta = strdup (by+4);
if (mta == NULL)
return NULL;
/* After the MTA comes its IP address (or HELO response) in parenthesis.
* so let's terminate the string there
*/
@ -313,6 +313,7 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
return NULL;
}
*ptr = '\0';
/* Now extract the last two components of the MTA host name
* as domain and tld
*/
@ -323,6 +324,7 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
domain = tld;
tld = ptr;
}
if (domain) {
/* recombine domain and tld and look for it among the configured
* email addresses
@ -340,8 +342,10 @@ guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
return other[i];
}
}
free (mta);
}
return NULL;
}