Date: Sat, 3 May 2025 11:32:57 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: ee75c4d77a80 - stable/13 - nvmecontrol(8): Fix two typos in command messages Message-ID: <202505031132.543BWvgw029950@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=ee75c4d77a80d7299d50cf6413dafeaccd0d1ac5 commit ee75c4d77a80d7299d50cf6413dafeaccd0d1ac5 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:31:31 +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 1ecb7a2360b9..394b37587fe2 100644 --- a/sbin/nvmecontrol/identify.c +++ b/sbin/nvmecontrol/identify.c @@ -269,7 +269,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 0f73c9f6c3cc..4fee708853b5 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,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202505031132.543BWvgw029950>