summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Duncan <lduncan@suse.com>2022-02-23 17:15:59 -0800
committerGitHub <noreply@github.com>2022-02-23 17:15:59 -0800
commitfb54ffde8f2900afe628f6a81cc0bb1dc3d019ae (patch)
tree01ebd2287092f0e6007f36c81f5f531992ba5492
parente3a5f4d1be0838398c8ce8fa883a060a200f7697 (diff)
parent03143577e87dbd2ef9c75798bd8bd82af6380806 (diff)
downloadopen-iscsi-fb54ffde8f2900afe628f6a81cc0bb1dc3d019ae.tar.gz
Merge pull request #307 from scaleoutsean/master
Fix minor error string typos (editor: and grammar)
-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;
}