summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr/idbm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/idbm.c b/usr/idbm.c
index e1a9021..c232b7b 100644
--- a/usr/idbm.c
+++ b/usr/idbm.c
@@ -1241,7 +1241,7 @@ void idbm_recinfo_config(recinfo_t *info, FILE *f)
*(name+i) = *nl; i++; nl++;
}
if (!*nl) {
- log_warning("config file line %d do not has value",
+ log_warning("Config file line %d does not have value",
line_number);
continue;
}
@@ -1249,7 +1249,7 @@ void idbm_recinfo_config(recinfo_t *info, FILE *f)
/* skip after-name traling spaces */
while (*nl && isspace(c = *nl)) nl++;
if (*nl && *nl != '=') {
- log_warning("config file line %d has not '=' sepa",
+ log_warning("Config file line %d does not have '=' separator",
line_number);
continue;
}
@@ -1258,7 +1258,7 @@ void idbm_recinfo_config(recinfo_t *info, FILE *f)
/* skip after-sepa traling spaces */
while (*nl && isspace(c = *nl)) nl++;
if (!*nl) {
- log_warning("config file line %d do not has value",
+ log_warning("Config file line %d does not have value",
line_number);
continue;
}