diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-17 18:11:45 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-17 18:11:45 +0000 |
commit | 54cf511ce1286ce46f04e4cead085b4af829f179 (patch) | |
tree | a43331e67e2472f7a8c415aee09ce17137d734a6 /libbb/llist.c | |
parent | ec27feb04589d46233802f686559fb5f532fb2df (diff) |
sort: fix multiple -k (was ignoring all except last)
Diffstat (limited to 'libbb/llist.c')
-rw-r--r-- | libbb/llist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/llist.c b/libbb/llist.c index 63c77fa9e..0a5978a26 100644 --- a/libbb/llist.c +++ b/libbb/llist.c @@ -74,7 +74,7 @@ void llist_free(llist_t * elm, void (*freeit) (void *data)) /* Reverse list order. Useful since getopt32 saves option params * in reverse order */ -llist_t *rev_llist(llist_t * list) +llist_t *llist_rev(llist_t * list) { llist_t *new = NULL; |