git: 45ff300000d1 - stable/14 - nvmecontrol(8): Fix two typos in command messages
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 03 May 2025 11:31:22 UTC
The branch stable/14 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=45ff300000d1f3b36df2bc353b656ca048757398
commit 45ff300000d1f3b36df2bc353b656ca048757398
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-04-26 10:18:31 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-05-03 11:29:54 +0000
nvmecontrol(8): Fix two typos in command messages
Fix two typos in command messages:
- s/identiy/identity/
(cherry picked from commit 52cc1708f5afdb3208d7797b87b3059a780d613b)
---
sbin/nvmecontrol/identify.c | 2 +-
sbin/nvmecontrol/ns.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sbin/nvmecontrol/identify.c b/sbin/nvmecontrol/identify.c
index 81aebad0e0d6..d02ae51d72ee 100644
--- a/sbin/nvmecontrol/identify.c
+++ b/sbin/nvmecontrol/identify.c
@@ -268,7 +268,7 @@ identify(const struct cmd *f, int argc, char *argv[])
static const struct opts identify_opts[] = {
#define OPT(l, s, t, opt, addr, desc) { l, s, t, &opt.addr, desc }
OPT("hex", 'x', arg_none, opt, hex,
- "Print identiy information in hex"),
+ "Print identity information in hex"),
OPT("verbose", 'v', arg_none, opt, verbose,
"More verbosity: print entire identify table"),
OPT("nsid", 'n', arg_uint32, opt, nsid,
diff --git a/sbin/nvmecontrol/ns.c b/sbin/nvmecontrol/ns.c
index 70392af19111..b1c2fb714ed1 100644
--- a/sbin/nvmecontrol/ns.c
+++ b/sbin/nvmecontrol/ns.c
@@ -334,7 +334,7 @@ static struct identify_options {
static const struct opts identify_opts[] = {
OPT("hex", 'x', arg_none, identify_opt, hex,
- "Print identiy information in hex"),
+ "Print identity information in hex"),
OPT("verbose", 'v', arg_none, identify_opt, verbose,
"More verbosity: print entire identify table"),
OPT("nsid", 'n', arg_uint32, identify_opt, nsid,