aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-06-30 20:41:07 -0500
committerRob Landley <rob@landley.net>2016-06-30 20:41:07 -0500
commitec0b482e9fd27cb994b30e0f1b8a4d39a85735cc (patch)
tree8bcc18d50c30c59d2d4f1cf35c4e3fc6035ded05 /main.c
parent20f67f157c2284057328e6391d10e329b088f8d2 (diff)
downloadtoybox-ec0b482e9fd27cb994b30e0f1b8a4d39a85735cc.tar.gz
Fix option parsing infrastructure bug.
In main.c: used adjusted string with placeholers for removed options (so flag values don't move based on config, allowing FORCE_FLAGS to work). In scripts/mkflags.c: test was wrong, a bare longopt never matches a single letter command, but it was treated as always matching when comparing allyesconfig vs current config to determine which options were disabled, so there was a corner case that got the flag values wrong.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index bedb333f..31e51b17 100644
--- a/main.c
+++ b/main.c
@@ -13,7 +13,7 @@
#undef NEWTOY
#undef OLDTOY
-#define NEWTOY(name, opts, flags) {#name, name##_main, opts, flags},
+#define NEWTOY(name, opts, flags) {#name, name##_main, OPTSTR_##name, flags},
#define OLDTOY(name, oldname, flags) \
{#name, oldname##_main, OPTSTR_##oldname, flags},