From 03143577e87dbd2ef9c75798bd8bd82af6380806 Mon Sep 17 00:00:00 2001 From: scaleoutSean Date: Tue, 22 Feb 2022 11:03:20 +0800 Subject: Fix minor error string typos --- usr/idbm.c | 6 +++--- 1 file 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; } -- cgit v1.2.1