From 7f73c048950852e6088fa1aaa0a91c41ddcef3a1 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 25 Jul 2024 15:32:44 -0400 Subject: [PATCH] nvmfd: Correct usage description During development the command line options for PDU digests for nvmecontrol(8) and nvmfd(8) were renamed to align with Linux's nvme(1) command, but the usage description in nvmfd(8) had a mix of the old and new options. Sponsored by: Chelsio Communications --- usr.sbin/nvmfd/nvmfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/nvmfd/nvmfd.c b/usr.sbin/nvmfd/nvmfd.c index 6fce21b07b7..cce7a88706d 100644 --- a/usr.sbin/nvmfd/nvmfd.c +++ b/usr.sbin/nvmfd/nvmfd.c @@ -36,8 +36,8 @@ static volatile bool quit = false; static void usage(void) { - fprintf(stderr, "nvmfd -K [-FGg] [-P port] [-p port] [-t transport] [-n subnqn]\n" - "nvmfd [-dDFH] [-P port] [-p port] [-t transport] [-n subnqn]\n" + fprintf(stderr, "nvmfd -K [-dFGg] [-P port] [-p port] [-t transport] [-n subnqn]\n" + "nvmfd [-dFGg] [-P port] [-p port] [-t transport] [-n subnqn]\n" "\tdevice [device [...]]\n" "\n" "Devices use one of the following syntaxes:\n"