commit | 54cf511ce1286ce46f04e4cead085b4af829f179 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sat Feb 17 18:11:45 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sat Feb 17 18:11:45 2007 +0000 |
tree | a43331e67e2472f7a8c415aee09ce17137d734a6 | |
parent | ec27feb04589d46233802f686559fb5f532fb2df [diff] [blame] |
sort: fix multiple -k (was ignoring all except last)
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index f060c0a..c69470a 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c
@@ -1312,7 +1312,7 @@ if (opt & OPT_l) decode_format_string("d4"); if (opt & OPT_o) decode_format_string("o2"); //if (opt & OPT_t)... - lst_t = rev_llist(lst_t); + lst_t = llist_rev(lst_t); while (lst_t) { decode_format_string(lst_t->data); lst_t = lst_t->link;