masqmail-0.2

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 diff
     1.1 --- a/src/address.c	Wed Oct 29 16:34:13 2008 +0100
     1.2 +++ b/src/address.c	Wed Oct 29 21:10:18 2008 +0100
     1.3 @@ -43,8 +43,7 @@
     1.4  	return addr;
     1.5  }
     1.6  
     1.7 -/* nothing special about pipes here,
     1.8 -   but its only called for that purpose */
     1.9 +/* nothing special about pipes here, but its only called for that purpose */
    1.10  address*
    1.11  create_address_pipe(gchar * path)
    1.12  {
    1.13 @@ -103,9 +102,8 @@
    1.14  gboolean
    1.15  addr_isequal(address * addr1, address * addr2)
    1.16  {
    1.17 -	return
    1.18 -		(strcmp(addr1->local_part, addr2->local_part) == 0) &&
    1.19 -		(strcasecmp(addr1->domain, addr2->domain) == 0);
    1.20 +	return (strcmp(addr1->local_part, addr2->local_part) == 0)
    1.21 +	       && (strcasecmp(addr1->domain, addr2->domain) == 0);
    1.22  }
    1.23  
    1.24  /* searches in ancestors of addr1 */