From 54cf511ce1286ce46f04e4cead085b4af829f179 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 17 Feb 2007 18:11:45 +0000 Subject: sort: fix multiple -k (was ignoring all except last) --- networking/wget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'networking/wget.c') diff --git a/networking/wget.c b/networking/wget.c index e649ccdda..db222156b 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; -- cgit v1.2.3-55-g6feb