diff options
-rw-r--r-- | libbb/getopt_ulflags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/getopt_ulflags.c b/libbb/getopt_ulflags.c index 37c4ec0f0..f620812fa 100644 --- a/libbb/getopt_ulflags.c +++ b/libbb/getopt_ulflags.c | |||
@@ -132,7 +132,7 @@ const char *bb_opt_complementally | |||
132 | 132 | ||
133 | llist_t *my_b = NULL; | 133 | llist_t *my_b = NULL; |
134 | int verbose_level = 0; | 134 | int verbose_level = 0; |
135 | bb_opt_complementally = "vvb*b-c:c-b"; | 135 | bb_opt_complementally = "vv:b*:b-c:c-b"; |
136 | bb_getopt_ulflags(argc, argv, "vb:c", &my_b, &verbose_level); | 136 | bb_getopt_ulflags(argc, argv, "vb:c", &my_b, &verbose_level); |
137 | while (my_b) { dosomething_with(my_b->data) ; my_b = my_b->link; } | 137 | while (my_b) { dosomething_with(my_b->data) ; my_b = my_b->link; } |
138 | if (verbose_level) bb_printf("verbose\n"); | 138 | if (verbose_level) bb_printf("verbose\n"); |