diff options
author | Denis Vlasenko | 2007-02-17 18:11:45 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-02-17 18:11:45 +0000 |
commit | 54cf511ce1286ce46f04e4cead085b4af829f179 (patch) | |
tree | a43331e67e2472f7a8c415aee09ce17137d734a6 /networking/wget.c | |
parent | ec27feb04589d46233802f686559fb5f532fb2df (diff) | |
download | busybox-54cf511ce1286ce46f04e4cead085b4af829f179.zip busybox-54cf511ce1286ce46f04e4cead085b4af829f179.tar.gz |
sort: fix multiple -k (was ignoring all except last)
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index e649ccd..db22215 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -157,7 +157,7 @@ int wget_main(int argc, char **argv) if (headers_llist) { int size = 1; char *cp; - llist_t *ll = headers_llist = rev_llist(headers_llist); + llist_t *ll = headers_llist = llist_rev(headers_llist); while (ll) { size += strlen(ll->data) + 2; ll = ll->link; |