diff options
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/getopt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/getopt.c b/util-linux/getopt.c index 31790d2..e3b4ca6 100644 --- a/util-linux/getopt.c +++ b/util-linux/getopt.c @@ -329,8 +329,7 @@ int getopt_main(int argc, char **argv) &optstr, &name, &s_arg, &l_arg); /* Effectuate the read options for the applet itself */ while (l_arg) { - long_options = add_long_options(long_options, l_arg->data); - l_arg = l_arg->link; + long_options = add_long_options(long_options, llist_pop(&l_arg)); } #endif |