masqmail
changeset 410:cff967b2f51e
Minor comment rework.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Wed, 29 Feb 2012 12:05:47 +0100 |
parents | 6874a4f265c1 |
children | 9b93c0a3bd8c |
files | src/parse.c |
diffstat | 1 files changed, 8 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/src/parse.c Wed Feb 29 11:03:46 2012 +0100 1.2 +++ b/src/parse.c Wed Feb 29 12:05:47 2012 +0100 1.3 @@ -395,8 +395,10 @@ 1.4 address *addr = g_malloc(sizeof(address)); 1.5 addr->address = g_strdup(""); 1.6 addr->local_part = g_strdup(""); 1.7 - /* 'NULL' address (failure notice), 1.8 - "" makes sure it will not be qualified with a hostname */ 1.9 + /* 1.10 + ** 'NULL' address: failure notice 1.11 + ** "": will *not* be qualified with a hostname 1.12 + */ 1.13 addr->domain = g_strdup(""); 1.14 return addr; 1.15 } 1.16 @@ -433,8 +435,10 @@ 1.17 if (dom_beg != NULL) { 1.18 addr->domain = g_strndup(dom_beg, dom_end - dom_beg); 1.19 } else if (addr->local_part[0] == '\0') { 1.20 - /* 'NULL' address (failure notice), 1.21 - "" makes sure it will not be qualified with a hostname */ 1.22 + /* 1.23 + ** 'NULL' address: failure notice 1.24 + ** "": will *not* be qualified with a hostname 1.25 + */ 1.26 addr->domain = g_strdup(""); 1.27 } else { 1.28 addr->domain = NULL;