sort: fix multiple -k (was ignoring all except last)

This commit is contained in:
Denis Vlasenko
2007-02-17 18:11:45 +00:00
parent ec27feb045
commit 54cf511ce1
8 changed files with 26 additions and 10 deletions

View File

@ -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;