From e8636420a94d36a5691b5720821ef49f96648a21 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Fri, 16 Jul 2021 17:48:27 -0500 Subject: [PATCH] Mention the man page in `fscryptctl --help` output --- fscryptctl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fscryptctl.c b/fscryptctl.c index 7d9883c..4dc1479 100644 --- a/fscryptctl.c +++ b/fscryptctl.c @@ -131,7 +131,9 @@ static void __attribute__((__noreturn__)) usage(FILE *out) { "\nNotes:\n" " Keys are identified by 32-character hex strings (key identifiers).\n" "\n" - " Raw keys are given on stdin in binary and usually must be 64 bytes.\n", + " Raw keys are given on stdin in binary and usually must be 64 bytes.\n" + "\n" + " For more information, run `man fscryptctl`.\n", out); exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);