From 8f03384964848028c4b4ac78004144934ac0cf53 Mon Sep 17 00:00:00 2001 From: Kim Woelders Date: Fri, 18 Jun 2021 07:44:02 +0200 Subject: [PATCH] print_help(): Add missing options to run in foreground Suggested by joluxer . --- src/ttynvt.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ttynvt.c b/src/ttynvt.c index 3938675..14866be 100644 --- a/src/ttynvt.c +++ b/src/ttynvt.c @@ -1115,6 +1115,8 @@ static void print_help(void) { fprintf(stderr, "ttynvt Usage:\n" "\t-D level\tEnable debug\n" + "\t-d\t\tStay in foreground, do not detach\n" + "\t-f\t\tStay in foreground, do not detach\n" "\t-E\t\tPrint debug to stdout (default is syslog)\n" "\t-M major, --maj=major\n" "\t-m minor, --min=minor\n"