masqmail
diff src/tables.c @ 238:ec28ce798b79
minor improvements in wordings
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Mon, 25 Oct 2010 14:02:18 -0300 |
parents | 3b344bf57162 |
children | 41958685480d |
line diff
1.1 --- a/src/tables.c Fri Oct 22 11:56:47 2010 -0300 1.2 +++ b/src/tables.c Mon Oct 25 14:02:18 2010 -0300 1.3 @@ -126,11 +126,12 @@ 1.4 } 1.5 } 1.6 fclose(fptr); 1.7 - if (list == NULL) 1.8 - logwrite(LOG_NOTICE, "empty table file %s\n", fname); 1.9 + if (!list) 1.10 + logwrite(LOG_NOTICE, "table file %s contained no entries\n", fname); 1.11 return list; 1.12 } 1.13 - logwrite(LOG_ALERT, "could not open table file %s: %s. Thus no aliasing is done\n", fname, strerror(errno)); 1.14 + logwrite(LOG_ALERT, "could not open table file %s: %s." 1.15 + " Thus no aliasing will be done\n", fname, strerror(errno)); 1.16 1.17 return NULL; 1.18 }