Mercurial > masqmail
comparison 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 |
comparison
equal
deleted
inserted
replaced
237:5f9f3a65032e | 238:ec28ce798b79 |
---|---|
124 pair = parse_table_pair(buf, delim); | 124 pair = parse_table_pair(buf, delim); |
125 list = g_list_append(list, pair); | 125 list = g_list_append(list, pair); |
126 } | 126 } |
127 } | 127 } |
128 fclose(fptr); | 128 fclose(fptr); |
129 if (list == NULL) | 129 if (!list) |
130 logwrite(LOG_NOTICE, "empty table file %s\n", fname); | 130 logwrite(LOG_NOTICE, "table file %s contained no entries\n", fname); |
131 return list; | 131 return list; |
132 } | 132 } |
133 logwrite(LOG_ALERT, "could not open table file %s: %s. Thus no aliasing is done\n", fname, strerror(errno)); | 133 logwrite(LOG_ALERT, "could not open table file %s: %s." |
134 " Thus no aliasing will be done\n", fname, strerror(errno)); | |
134 | 135 |
135 return NULL; | 136 return NULL; |
136 } | 137 } |
137 | 138 |
138 void | 139 void |