From 481a19c4895916be9e6cde32cdc7630476451f19 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 7 Dec 2022 03:34:58 -0600 Subject: [PATCH] Fix "nohup --help" and friends. --- lib/args.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/args.c b/lib/args.c index f4750e02..9fe320ff 100644 --- a/lib/args.c +++ b/lib/args.c @@ -252,7 +252,7 @@ static int parse_optflaglist(struct getoptflagstate *gof) // Parse option string into a linked list of options with attributes. - if (!*options) gof->stopearly++, gof->noerror++; + if (!*options) gof->noerror++; while (*options) { char *temp; -- 2.39.2