getopt32: fix llist_t options ordering. llist_rev is not unused.
[platform/upstream/busybox.git] / networking / wget.c
index 94b9b69..1da18ff 100644 (file)
@@ -159,7 +159,7 @@ int wget_main(int argc, char **argv)
        if (headers_llist) {
                int size = 1;
                char *cp;
-               llist_t *ll = headers_llist = llist_rev(headers_llist);
+               llist_t *ll = headers_llist;
                while (ll) {
                        size += strlen(ll->data) + 2;
                        ll = ll->link;