diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-17 18:11:45 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-17 18:11:45 +0000 |
commit | 8aea7ebb51f7d0b978900de01e2fb3b171497129 (patch) | |
tree | a43331e67e2472f7a8c415aee09ce17137d734a6 /coreutils/od_bloaty.c | |
parent | d01c2739ee04c79a8da5fb68ef889d862e747921 (diff) | |
download | busybox-w32-8aea7ebb51f7d0b978900de01e2fb3b171497129.tar.gz busybox-w32-8aea7ebb51f7d0b978900de01e2fb3b171497129.tar.bz2 busybox-w32-8aea7ebb51f7d0b978900de01e2fb3b171497129.zip |
sort: fix multiple -k (was ignoring all except last)
git-svn-id: svn://busybox.net/trunk/busybox@17919 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/od_bloaty.c')
-rw-r--r-- | coreutils/od_bloaty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index f060c0ace..c69470a14 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -1312,7 +1312,7 @@ int od_main(int argc, char **argv) | |||
1312 | if (opt & OPT_l) decode_format_string("d4"); | 1312 | if (opt & OPT_l) decode_format_string("d4"); |
1313 | if (opt & OPT_o) decode_format_string("o2"); | 1313 | if (opt & OPT_o) decode_format_string("o2"); |
1314 | //if (opt & OPT_t)... | 1314 | //if (opt & OPT_t)... |
1315 | lst_t = rev_llist(lst_t); | 1315 | lst_t = llist_rev(lst_t); |
1316 | while (lst_t) { | 1316 | while (lst_t) { |
1317 | decode_format_string(lst_t->data); | 1317 | decode_format_string(lst_t->data); |
1318 | lst_t = lst_t->link; | 1318 | lst_t = lst_t->link; |