From 0ea9622afa650cecec0e6b72af32c94df3ac8cfa Mon Sep 17 00:00:00 2001 From: Gleb Chesnokov Date: Mon, 28 Nov 2022 16:56:41 +0300 Subject: [PATCH] scst_sysfs: Unify output format for scst_luns_mgmt_show() All sysfs mgmt show functions print available parameters/attributes without '.' at the end, except for scst_luns_mgmt_show(). So fix it. This patch doesn't change any functionality. --- scst/src/scst_sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/src/scst_sysfs.c b/scst/src/scst_sysfs.c index dca533024..8fed1731a 100644 --- a/scst/src/scst_sysfs.c +++ b/scst/src/scst_sysfs.c @@ -1522,7 +1522,7 @@ static ssize_t scst_luns_mgmt_show(struct kobject *kobj, "\n" "where parameters are one or more " "param_name=value pairs separated by ';'\n" - "\nThe following parameters available: read_only.\n"; + "\nThe following parameters available: read_only\n"; return sprintf(buf, "%s", help); }