summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorscaleoutSean <scaleoutsean@users.noreply.github.com>2022-02-22 11:03:20 +0800
committerscaleoutSean <scaleoutsean@users.noreply.github.com>2022-02-22 11:03:20 +0800
commit03143577e87dbd2ef9c75798bd8bd82af6380806 (patch)
tree01ebd2287092f0e6007f36c81f5f531992ba5492 /usr
parente3a5f4d1be0838398c8ce8fa883a060a200f7697 (diff)
downloadopen-iscsi-03143577e87dbd2ef9c75798bd8bd82af6380806.tar.gz
Fix minor error string typos
Diffstat (limited to 'usr')
-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;
}