aboutsummaryrefslogtreecommitdiff
path: root/lib/args.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-04-14 21:43:22 -0500
committerRob Landley <rob@landley.net>2013-04-14 21:43:22 -0500
commit36ffc5aa3e6bfcab5d628208f4f1508f9b1c2620 (patch)
tree02fa7a68fe53808c79ce72f9ba21beb0b9908214 /lib/args.c
parent26c0045a6eb061e180f58b6b4c029a5df5a2818e (diff)
downloadtoybox-36ffc5aa3e6bfcab5d628208f4f1508f9b1c2620.tar.gz
Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure.
Diffstat (limited to 'lib/args.c')
-rw-r--r--lib/args.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/args.c b/lib/args.c
index fa1d4e6f..748008f3 100644
--- a/lib/args.c
+++ b/lib/args.c
@@ -341,7 +341,7 @@ void get_optflags(void)
// Option parsing is a two stage process: parse the option string into
// a struct opts list, then use that list to process argv[];
- if (CFG_HELP) toys.exithelp++;
+ toys.exithelp++;
// Allocate memory for optargs
saveflags = 0;
while (toys.argv[saveflags++]);
@@ -437,7 +437,7 @@ notflag:
gof.minargs, letters[!(gof.minargs-1)]);
if (toys.optc>gof.maxargs)
error_exit("Max %d argument%s", gof.maxargs, letters[!(gof.maxargs-1)]);
- if (CFG_HELP) toys.exithelp = 0;
+ toys.exithelp = 0;
if (CFG_TOYBOX_FREE) {
llist_traverse(gof.opts, free);