Mercurial > masqmail
diff src/address.c @ 13:49dab67fe461
code beautifying
author | meillo@marmaro.de |
---|---|
date | Wed, 29 Oct 2008 21:10:18 +0100 |
parents | 26e34ae9a3e3 |
children | a8f3424347dc |
line wrap: on
line diff
--- a/src/address.c Wed Oct 29 16:34:13 2008 +0100 +++ b/src/address.c Wed Oct 29 21:10:18 2008 +0100 @@ -43,8 +43,7 @@ return addr; } -/* nothing special about pipes here, - but its only called for that purpose */ +/* nothing special about pipes here, but its only called for that purpose */ address* create_address_pipe(gchar * path) { @@ -103,9 +102,8 @@ gboolean addr_isequal(address * addr1, address * addr2) { - return - (strcmp(addr1->local_part, addr2->local_part) == 0) && - (strcasecmp(addr1->domain, addr2->domain) == 0); + return (strcmp(addr1->local_part, addr2->local_part) == 0) + && (strcasecmp(addr1->domain, addr2->domain) == 0); } /* searches in ancestors of addr1 */